feat: initial commit with cobra setup

This commit is contained in:
2024-10-19 12:26:42 +05:30
commit b4eb561e1f
10 changed files with 190 additions and 0 deletions

13
internal/client/init.go Normal file
View File

@ -0,0 +1,13 @@
/*
Copyright © 2024 tux <0xtux@pm.me>
*/
package client
import (
"log"
)
func Start(port uint16) {
log.Printf("Hello from client: %d", port)
}

13
internal/server/init.go Normal file
View File

@ -0,0 +1,13 @@
/*
Copyright © 2024 tux <0xtux@pm.me>
*/
package server
import (
"log"
)
func Start(port uint16) {
log.Printf("Hello from server: %d", port)
}