main.go 516 B

1234567891011121314151617181920212223
  1. package main
  2. import (
  3. "hongze/fms_api/core"
  4. )
  5. // @title 弘则人力资源管理系统API接口文档
  6. // @version 1.0
  7. // @description 弘则人力资源管理系统API接口文档
  8. // @termsOfService https://www.hzinsights.com/
  9. // @contact.name www.hzinsights.com/
  10. // @contact.url https://www.hzinsights.com/
  11. // @contact.email pyan@hzinsights.com
  12. // @license.name Apache 2.0
  13. // @license.url http://www.apache.org/licenses/LICENSE-2.0.html
  14. // @host 127.0.0.1:8390
  15. // @BasePath /
  16. func main() {
  17. core.RunServe()
  18. }