Change name of module

This commit is contained in:
qowevisa 2024-11-27 13:32:31 +02:00
parent b26b0512f2
commit 06e5e7cd9c
7 changed files with 7 additions and 7 deletions

View File

@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"time" "time"
"git.qowevisa.me/Qowevisa/tcpmachine/tcpclient" "git.qowevisa.me/qowevisa/tcpmachine/tcpclient"
) )
func main() { func main() {

View File

@ -5,7 +5,7 @@ import (
"net" "net"
"time" "time"
"git.qowevisa.me/Qowevisa/tcpmachine/tcpserver" "git.qowevisa.me/qowevisa/tcpmachine/tcpserver"
) )
func main() { func main() {

2
go.mod
View File

@ -1,3 +1,3 @@
module git.qowevisa.me/Qowevisa/tcpmachine module git.qowevisa.me/qowevisa/tcpmachine
go 1.20 go 1.20

View File

@ -8,7 +8,7 @@ import (
"net" "net"
"strings" "strings"
"git.qowevisa.me/Qowevisa/tcpmachine/tcpcommand" "git.qowevisa.me/qowevisa/tcpmachine/tcpcommand"
) )
func GetDefaultConfig() *ClientConfiguration { func GetDefaultConfig() *ClientConfiguration {

View File

@ -3,7 +3,7 @@ package tcpclient
import ( import (
"net" "net"
"git.qowevisa.me/Qowevisa/tcpmachine/tcpcommand" "git.qowevisa.me/qowevisa/tcpmachine/tcpcommand"
) )
type ClientConfiguration struct { type ClientConfiguration struct {

View File

@ -9,7 +9,7 @@ import (
"net" "net"
"strings" "strings"
"git.qowevisa.me/Qowevisa/tcpmachine/tcpcommand" "git.qowevisa.me/qowevisa/tcpmachine/tcpcommand"
) )
const ( const (

View File

@ -3,7 +3,7 @@ package tcpserver
import ( import (
"net" "net"
"git.qowevisa.me/Qowevisa/tcpmachine/tcpcommand" "git.qowevisa.me/qowevisa/tcpmachine/tcpcommand"
) )
type ServerLoggingLevel int type ServerLoggingLevel int