Initial commit

This commit is contained in:
2026-05-03 10:17:59 +01:00
commit caffa117c2
14 changed files with 1554 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
package main
import (
"fmt"
"os"
"pictest/cmd/pictest"
)
func main() {
if err := pictest.Run(); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}