Empty
ai/code-review No changes to review
pictest/pipeline/head This commit looks good

This commit is contained in:
2026-05-03 10:40:02 +01:00
commit 7ee8ff382b
16 changed files with 1849 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)
}
}