1234567891011121314151617181920212223 |
- package main
- import (
- "hongze/hongze_yb/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:8607
- // @BasePath /
- func main() {
- core.RunServe()
- }
|