审查视图

tangxuhui authored
1 2 3 4
package main

import (
	"github.com/beego/beego/v2/server/web"
5
	"gitlab.fjmaimaimai.com/allied-creation/allied-creation-gateway/pkg/infrastructure/cache"
tangxuhui authored
6
	_ "gitlab.fjmaimaimai.com/allied-creation/allied-creation-gateway/pkg/port/beego"
tangxuhui authored
7 8
)
9 10 11 12
func init() {
	cache.InitRedist()
}
tangxuhui authored
13 14 15
func main() {
	web.Run()
}