main.go 157B

123456789101112131415161718
  1. package main
  2. import (
  3. _ "gdyb/routers"
  4. "gdyb/service"
  5. "github.com/astaxie/beego"
  6. )
  7. func init() {
  8. service.ConnectDB()
  9. }
  10. func main() {
  11. beego.Run()
  12. }