2023-09-13 06:03:25 +02:00
|
|
|
package auth
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Root() *cli.Command {
|
|
|
|
return &cli.Command{
|
2023-09-29 07:41:01 +02:00
|
|
|
Name: "auth",
|
|
|
|
Usage: "Auth related command",
|
|
|
|
Subcommands: []*cli.Command{
|
|
|
|
NewToken(),
|
2023-10-03 19:24:03 +02:00
|
|
|
CheckToken(),
|
2023-09-29 07:41:01 +02:00
|
|
|
},
|
2023-09-13 06:03:25 +02:00
|
|
|
}
|
|
|
|
}
|