This commit is contained in:
Matt Jadud
2025-11-29 15:59:41 -05:00
parent a26e6a7b32
commit 3f096d919c
3 changed files with 15 additions and 1 deletions

11
server/cmd/main.go Normal file
View File

@@ -0,0 +1,11 @@
package cmd
import (
"fmt"
domain64 "git.jadud.com/grosbeak/shared/domain64"
)
func main() {
fmt.Printf("True: %s", domain64.ReturnsTrue())
}

3
server/go.mod Normal file
View File

@@ -0,0 +1,3 @@
module git.jadud.com/grosbeak/server
go 1.23.2