feat:完善活动信息

This commit is contained in:
henry
2021-11-25 09:58:08 +08:00
parent 5475320171
commit 474e33750a
16 changed files with 574 additions and 33 deletions

View File

@ -1,9 +1,9 @@
package main
import (
"SciencesServer/cmd/ctl/command/controller"
"SciencesServer/cmd/ctl/command/model"
"SciencesServer/config"
"github.com/spf13/cobra"
)
@ -14,6 +14,7 @@ var rootCmd = &cobra.Command{
}
func init() {
rootCmd.AddCommand(controller.ControllerCommand)
rootCmd.AddCommand(model.ModelCommand)
}