initial commit

Signed-off-by: Christine Dodrill <me@christine.website>
This commit is contained in:
Cadey Ratio 2022-03-26 23:26:31 -04:00
commit f4c77512af
2 changed files with 10 additions and 0 deletions

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module tulpa.dev/internal/test
go 1.18

7
test.go Normal file
View File

@ -0,0 +1,7 @@
package test
import "fmt"
func Run() {
fmt.Println("It worketh!")
}