nurse/main.go

22 lines
247 B
Go
Raw Normal View History

2022-04-28 16:35:02 +00:00
package main
import (
"fmt"
2022-04-28 16:35:02 +00:00
"os"
"code.icb4dc0.de/prskr/nurse/cmd"
)
2022-04-28 16:35:02 +00:00
func main() {
app, err := cmd.NewApp()
2022-05-13 13:38:19 +00:00
if err != nil {
fmt.Println(err)
os.Exit(1)
2022-09-22 12:04:53 +00:00
}
if err := app.Run(os.Args); err != nil {
fmt.Println(err)
os.Exit(1)
2022-04-28 16:35:02 +00:00
}
}