mirror of
https://codeberg.org/pronounscc/pronouns.cc.git
synced 2024-11-20 10:29:52 +01:00
41 lines
767 B
Go
41 lines
767 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
|
||
|
"codeberg.org/u1f320/pronouns.cc/backend"
|
||
|
"codeberg.org/u1f320/pronouns.cc/backend/server"
|
||
|
"codeberg.org/u1f320/pronouns.cc/scripts/cleandb"
|
||
|
"codeberg.org/u1f320/pronouns.cc/scripts/migrate"
|
||
|
"codeberg.org/u1f320/pronouns.cc/scripts/seeddb"
|
||
|
"github.com/urfave/cli/v2"
|
||
|
)
|
||
|
|
||
|
var app = &cli.App{
|
||
|
HelpName: "pronouns.cc",
|
||
|
Usage: "Pronoun card website and API",
|
||
|
Version: server.Tag,
|
||
|
Commands: []*cli.Command{
|
||
|
backend.Command,
|
||
|
{
|
||
|
Name: "database",
|
||
|
Aliases: []string{"db"},
|
||
|
Usage: "Manage the database",
|
||
|
Subcommands: []*cli.Command{
|
||
|
migrate.Command,
|
||
|
seeddb.Command,
|
||
|
cleandb.Command,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
func main() {
|
||
|
err := app.Run(os.Args)
|
||
|
if err != nil {
|
||
|
fmt.Println(err)
|
||
|
os.Exit(1)
|
||
|
}
|
||
|
}
|