Redmage/main.go

22 lines
324 B
Go
Raw Normal View History

2024-04-06 01:22:00 +07:00
package main
import (
"context"
"embed"
2024-04-06 01:22:00 +07:00
"os"
"github.com/tigorlazuardi/redmage/cli"
"github.com/tigorlazuardi/redmage/db"
2024-04-06 01:22:00 +07:00
)
// go:embed db/migrations/*.sql
var migrations embed.FS
2024-04-06 01:22:00 +07:00
func main() {
db.Migrations = migrations
2024-04-06 01:22:00 +07:00
if err := cli.RootCmd.ExecuteContext(context.Background()); err != nil {
os.Exit(1)
}
}