init
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
Simon Vieille 2024-07-22 10:36:51 +02:00
commit 91e551f6d5
Signed by: deblan
GPG key ID: 579388D585F70417
12 changed files with 388 additions and 0 deletions

12
main.go Normal file
View file

@ -0,0 +1,12 @@
package main
import (
"log"
"os"
)
func main() {
if err := App().Run(os.Args); err != nil {
log.Fatal(err)
}
}