Add post target to create collage

fixes #1
This commit is contained in:
2023-08-28 23:35:32 -04:00
parent cd7c27460f
commit e1e6e3650a
3 changed files with 111 additions and 85 deletions

10
main_test.go Normal file
View File

@@ -0,0 +1,10 @@
package main
import "testing"
func TestNameGen(t *testing.T) {
g := NewNameGen()
t.Logf("next id: %s", g.Next())
t.Logf("next id: %s", g.Next())
t.Fail()
}