All checks were successful
ci/woodpecker/push/build Pipeline was successful
12 lines
119 B
Go
12 lines
119 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
if err := App().Run(os.Args); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|