Yerdaulet
11/22/2024, 7:32 AM//thing to check
suspend fun getAccounts(
@Query("account") account: String,
): ApiResult<AccountDto>
//test
apiInterfacesScope
.assertTrue {
it.hasFunction { function ->
function.returnType?.asInterfaceDeclaration()?.name == "ApiResult"
}
}
but my code doesn't workPoisonedYouth
11/22/2024, 11:50 AM