(input: GetUserGroupInput)
| 15 | |
| 16 | #[query(name = "get_user_group")] |
| 17 | async fn get_user_group(input: GetUserGroupInput) -> ApiResult<GetUserGroupResponse> { |
| 18 | CONTROLLER.get_user_group(input).await |
| 19 | } |
| 20 | |
| 21 | #[query(name = "list_user_groups")] |
| 22 | async fn list_user_groups(input: ListUserGroupsInput) -> ApiResult<ListUserGroupsResponse> { |
nothing calls this directly
no test coverage detected