account's info on profile screen; storing users into cache

This commit is contained in:
2024-07-12 23:20:24 +03:00
parent eef90a06ea
commit 25acc6505b
14 changed files with 374 additions and 120 deletions
@@ -12,7 +12,7 @@ interface UsersService {
@FormUrlEncoded
@POST(UsersUrls.GET_BY_ID)
suspend fun getById(
suspend fun get(
@FieldMap params: Map<String, String>?
): ApiResult<ApiResponse<List<VkUserData>>, RestApiError>
}