main.go 244 B

12345678910111213141516
  1. package main
  2. import (
  3. _ "gfast/boot"
  4. _ "gfast/router"
  5. "github.com/gogf/gf/frame/g"
  6. )
  7. // @title gfast API文档
  8. // @version 1.0
  9. // @description gfast 在线API文档
  10. // @host localhost
  11. // @BasePath /system
  12. func main() {
  13. g.Server().Run()
  14. }