initial commit

This commit is contained in:
2025-10-15 00:54:19 +02:00
parent 97c7383cf1
commit 0d4c44ee11
14 changed files with 1242 additions and 0 deletions

15
main.go Normal file
View File

@@ -0,0 +1,15 @@
package main
import (
"os"
"github.com/tlinden/epuppy/cmd"
)
func main() {
os.Exit(Main())
}
func Main() int {
return cmd.Execute(os.Stdout)
}