| 27 | ) |
| 28 | |
| 29 | type imlTeamModule struct { |
| 30 | service team.ITeamService `autowired:""` |
| 31 | memberService team_member.ITeamMemberService `autowired:""` |
| 32 | userService user.IUserService `autowired:""` |
| 33 | serviceService service.IServiceService `autowired:""` |
| 34 | roleService role.IRoleService `autowired:""` |
| 35 | roleMemberService role.IRoleMemberService `autowired:""` |
| 36 | transaction store.ITransaction `autowired:""` |
| 37 | } |
| 38 | |
| 39 | func (m *imlTeamModule) ExportAll(ctx context.Context) ([]*team_dto.ExportTeam, error) { |
| 40 | teams, err := m.service.List(ctx) |
nothing calls this directly
no outgoing calls
no test coverage detected