-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathmain.go
56 lines (47 loc) · 1.25 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package main
import (
"fmt"
"github.com/spf13/cobra"
"im-services/cmd"
AppCmd "im-services/cmd/cmd"
"im-services/internal/config"
"im-services/internal/service/bootstrap"
"im-services/pkg/console"
"os"
)
func init() {
config.InitConfig("config.yaml")
}
// @title im-services 接口文档
// @version 1.0
// @description
// @contact.name im-services
// @contact.url
// @contact.email [email protected]
// @license.name MIT
// @license.url http://www.apache.org/licenses/LICENSE-2.0.html
// @host 127.0.0.1:8000
// @BasePath /api
func main() {
var rootCmd = &cobra.Command{
Use: "im",
Short: "Hugo is a very fast static site generator",
Long: `A Fast and Flexible Static Site Generator built with
love by spf13 and friends in Go.
Complete documentation is available at https://hugo.spf13.com`,
PersistentPreRun: func(cmd *cobra.Command, args []string) {
bootstrap.LoadConfiguration()
},
}
rootCmd.AddCommand(
cmd.AppCmdServe,
cmd.GroupConsumers,
cmd.PrivateConsumers,
)
AppCmd.RegisterDefaultCmd(rootCmd, cmd.AppCmdServe)
AppCmd.RegisterGlobalFlags(rootCmd)
// 执行主命令
if err := rootCmd.Execute(); err != nil {
console.Exit(fmt.Sprintf("命令启动失败 %v: %s", os.Args, err.Error()))
}
}