1234567891011121314151617181920212223 |
- package main
- import (
- "hongze/fms_api/core"
- )
- // @title 弘则人力资源管理系统API接口文档
- // @version 1.0
- // @description 弘则人力资源管理系统API接口文档
- // @termsOfService https://www.hzinsights.com/
- // @contact.name www.hzinsights.com/
- // @contact.url https://www.hzinsights.com/
- // @contact.email pyan@hzinsights.com
- // @license.name Apache 2.0
- // @license.url http://www.apache.org/licenses/LICENSE-2.0.html
- // @host 127.0.0.1:8390
- // @BasePath /
- func main() {
- core.RunServe()
- }
|