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
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
View File
@@ -0,0 +1,3 @@
module git.jadud.com/grosbeak/server
go 1.23.2
+1 -1
View File
@@ -1,5 +1,5 @@
package domain64
func ReturnTrue() bool {
func ReturnsTrue() bool {
return true
}