shoebill/main.go

17 lines
265 B
Go
Raw Permalink Normal View History

2023-07-20 09:26:25 +00:00
package main
import (
2024-07-25 13:23:28 +00:00
"context"
2023-07-20 09:26:25 +00:00
2023-08-02 15:00:34 +00:00
"git.badhouseplants.net/allanger/shoebill/cmd"
2023-07-20 09:26:25 +00:00
"github.com/sirupsen/logrus"
)
2024-07-25 13:23:28 +00:00
// asfasdf
2023-07-20 09:26:25 +00:00
func main() {
2024-07-25 13:23:28 +00:00
var ctx context.Context
ctx = context.Background()
2023-07-20 09:26:25 +00:00
if err := cmd.Execute(ctx); err != nil {
2024-07-25 13:23:28 +00:00
logrus.Fatal(err)
2023-07-20 09:26:25 +00:00
}
}