GITLAB

Hermes / api-game

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • api-game_qianyi
  • routers
  • router.go
  • 07718e2b   feat:基础框架 Browse Code »
    王家文
    2024-04-02 14:54:17 +0800  
router.go 299 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package routers

import (
	"apigame/controllers"

	"github.com/astaxie/beego"
)

func init() {

	prefix := "/3ad7e4ab92ae2249"

	// 海滩项目
	// 海滩抽奖
	beego.Router(prefix+"/ht/draw", &controllers.HtDrawController{}, "post:Draw")

	beego.ErrorController(&controllers.ErrorController{})
}