Complete AniList api integration #208

This commit is contained in:
Koitharu
2023-01-28 20:35:22 +02:00
parent 94203785f1
commit 6ca6ec28ac
13 changed files with 190 additions and 77 deletions

View File

@@ -0,0 +1,11 @@
package org.koitharu.kotatsu.core.network
import okhttp3.Interceptor
import okhttp3.Response
class CurlLoggingInterceptor : Interceptor {
override fun intercept(chain: Interceptor.Chain): Response {
return chain.proceed(chain.request()) // no-op implementation
}
}