You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Open-IM-Server/cmd/api/main.go

37 lines
984 B

4 years ago
package main
import (
2 years ago
"OpenIM/internal/api"
"OpenIM/internal/api/third"
"OpenIM/pkg/common/config"
"OpenIM/pkg/common/log"
4 years ago
"flag"
3 years ago
"fmt"
4 years ago
"strconv"
2 years ago
"OpenIM/pkg/common/constant"
4 years ago
)
func main() {
2 years ago
log.NewPrivateLog(constant.LogFileName)
2 years ago
router := api.NewGinRouter()
go third.MinioInit()
ginPort := flag.Int("port", config.Config.Api.GinPort[0], "get ginServerPort from cmd,default 10002 as port")
2 years ago
configPath := flag.String("config_path", "../config/", "config folder")
4 years ago
flag.Parse()
2 years ago
if err := config.InitConfig(*configPath); err != nil {
panic(err.Error())
}
address := "0.0.0.0:" + strconv.Itoa(*ginPort)
if config.Config.Api.ListenIP != "" {
address = config.Config.Api.ListenIP + ":" + strconv.Itoa(*ginPort)
}
2 years ago
fmt.Println("start api server, address: ", address, ", OpenIM version: ", constant.CurrentVersion)
2 years ago
err := router.Run(address)
3 years ago
if err != nil {
2 years ago
log.Error("", "api run failed ", address, err.Error())
panic("api start failed " + err.Error())
3 years ago
}
4 years ago
}