feat: add scaffolder

This commit is contained in:
2025-02-22 16:08:22 +01:00
commit 01023c212b
31 changed files with 1544 additions and 0 deletions

15
main.go Normal file
View File

@@ -0,0 +1,15 @@
package main
import (
"fmt"
"os"
"git.front.kjuulh.io/kjuulh/scaffold/cmd"
)
func main() {
if err := cmd.Execute(); err != nil {
fmt.Printf("scaffold failed: %s\n", err.Error())
os.Exit(1)
}
}