| 9 | ) |
| 10 | |
| 11 | type GroupHandler interface { |
| 12 | ListGroups(ctx *gin.Context) |
| 13 | GetGroupInfo(ctx *gin.Context) |
| 14 | GetGroupInviteLink(ctx *gin.Context) |
| 15 | SetGroupPhoto(ctx *gin.Context) |
| 16 | SetGroupName(ctx *gin.Context) |
| 17 | SetGroupDescription(ctx *gin.Context) |
| 18 | CreateGroup(ctx *gin.Context) |
| 19 | UpdateParticipant(ctx *gin.Context) |
| 20 | GetMyGroups(ctx *gin.Context) |
| 21 | JoinGroupLink(ctx *gin.Context) |
| 22 | LeaveGroup(ctx *gin.Context) |
| 23 | UpdateGroupSettings(ctx *gin.Context) |
| 24 | } |
| 25 | |
| 26 | type groupHandler struct { |
| 27 | groupService group_service.GroupService |
no outgoing calls
no test coverage detected