add client skeleton

This commit is contained in:
Ilia Denisov
2026-02-22 13:29:38 +02:00
parent 8f982278d2
commit 29d188969b
5 changed files with 204 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
package main
import "github.com/iliadenisov/galaxy/client"
func main() {
c := client.NewClient()
c.Run()
}