renamed project knyc -> knyt

This commit is contained in:
Settel 2021-07-30 16:16:55 +02:00
parent f750d5557d
commit afe923c335
5 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
TMUX_SESSION=knyc TMUX_SESSION=knyt
info: info:
@echo available targets: @echo available targets:

View File

@ -3,10 +3,10 @@ info:
@perl -ne 'm/^([a-zA-Z0-9\-]+):/ && print(" $$1\n");' Makefile @perl -ne 'm/^([a-zA-Z0-9\-]+):/ && print(" $$1\n");' Makefile
build: build:
go build knyc.go go build knyt.go
run: run:
go run knyc.go go run knyt.go
run-loop: run-loop:
pexec -R -c -e TARGET \ pexec -R -c -e TARGET \
@ -15,7 +15,7 @@ run-loop:
-- $(MAKE) '$$TARGET' -- $(MAKE) '$$TARGET'
run-standalone: run-standalone:
./knyc ./knyt
_run-endless-loop: _run-endless-loop:
while true; do $(MAKE) run || sleep 3; done while true; do $(MAKE) run || sleep 3; done

View File

@ -3,7 +3,7 @@ package engine
import ( import (
"fmt" "fmt"
"github.com/imkira/go-observer" "github.com/imkira/go-observer"
"sirlab.de/go/knyc/handler" "sirlab.de/go/knyt/handler"
"time" "time"
) )

View File

@ -1,4 +1,4 @@
module sirlab.de/go/knyc module sirlab.de/go/knyt
go 1.16 go 1.16

View File

@ -3,8 +3,8 @@ package main
import ( import (
"fmt" "fmt"
"net/http" "net/http"
"sirlab.de/go/knyc/engine" "sirlab.de/go/knyt/engine"
"sirlab.de/go/knyc/handler" "sirlab.de/go/knyt/handler"
) )
func main() { func main() {