main.go 580 B

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