add MapKeyValueRepo.kt

This commit is contained in:
2020-10-14 18:13:40 +06:00
parent af207d78a4
commit e78961b597
9 changed files with 115 additions and 4 deletions

View File

@@ -47,4 +47,12 @@ class KtorReadStandardCrudRepo<ObjectType, IdType> (
),
Boolean.serializer()
)
override suspend fun count(): Long = client.uniget(
buildStandardUrl(
baseUrl,
countRouting
),
Long.serializer()
)
}