mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
38 lines
588 B
Go
38 lines
588 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/rs/zerolog/log"
|
|
"github.com/spf13/cobra"
|
|
|
|
"n.eko.moe/neko"
|
|
"n.eko.moe/neko/internal/config"
|
|
)
|
|
|
|
func init() {
|
|
command := &cobra.Command{
|
|
Use: "serve",
|
|
Short: "",
|
|
Long: ``,
|
|
Run: neko.Service.ServeCommand,
|
|
}
|
|
|
|
configs := []config.Config{
|
|
neko.Service.Serve,
|
|
}
|
|
|
|
cobra.OnInitialize(func() {
|
|
for _, cfg := range configs {
|
|
cfg.Set()
|
|
}
|
|
neko.Service.Preflight()
|
|
})
|
|
|
|
for _, cfg := range configs {
|
|
if err := cfg.Init(command); err != nil {
|
|
log.Panic().Err(err).Msg("Unable to run command")
|
|
}
|
|
}
|
|
|
|
root.AddCommand(command)
|
|
}
|