commit f4c77512af7e48fb144e595da1eff0a3bb1bf1f8 Author: Christine Dodrill Date: Sat Mar 26 23:26:31 2022 -0400 initial commit Signed-off-by: Christine Dodrill diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..94fbe44 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module tulpa.dev/internal/test + +go 1.18 diff --git a/test.go b/test.go new file mode 100644 index 0000000..d932307 --- /dev/null +++ b/test.go @@ -0,0 +1,7 @@ +package test + +import "fmt" + +func Run() { + fmt.Println("It worketh!") +}