| 75 | ) |
| 76 | |
| 77 | type imlServiceModule struct { |
| 78 | serviceService service.IServiceService `autowired:""` |
| 79 | teamService team.ITeamService `autowired:""` |
| 80 | teamMemberService team_member.ITeamMemberService `autowired:""` |
| 81 | tagService tag.ITagService `autowired:""` |
| 82 | localModelService ai_local.ILocalModelService `autowired:""` |
| 83 | |
| 84 | serviceOverviewService service_overview.IOverviewService `autowired:""` |
| 85 | serviceTagService service_tag.ITagService `autowired:""` |
| 86 | apiService api.IAPIService `autowired:""` |
| 87 | apiDocService api_doc.IAPIDocService `autowired:""` |
| 88 | clusterService cluster.IClusterService `autowired:""` |
| 89 | subscribeServer subscribe.ISubscribeService `autowired:""` |
| 90 | |
| 91 | releaseService release.IReleaseService `autowired:""` |
| 92 | serviceModelMappingService service_model_mapping.IServiceModelMappingService `autowired:""` |
| 93 | logService log_service.ILogService `autowired:""` |
| 94 | |
| 95 | transaction store.ITransaction `autowired:""` |
| 96 | } |
| 97 | |
| 98 | func formatHeader(header string) string { |
| 99 | result, err := url.QueryUnescape(header) |
nothing calls this directly
no outgoing calls
no test coverage detected