const getGroup = (groupId: number) =>
  client
    .get<never, AxiosResponse<OnlineRankingGroup>>(endpoint(groupId))
    .then(response => response.data)