Initial commit

This commit is contained in:
Tyler
2021-02-23 21:10:44 -05:00
commit 4457d5038e
12 changed files with 1283 additions and 0 deletions

14
cmd/main.go Normal file
View File

@ -0,0 +1,14 @@
package main
import (
"log"
"meow.tf/go/cv"
)
func main() {
err := cv.Generate()
if err != nil {
log.Fatalln("Unable to generate:", err)
}
}