Skip to content

Instantly share code, notes, and snippets.

@mhmdcs
mhmdcs / Mock.kt
Created July 28, 2022 21:25
Mock API responses with annotation and interceptor.
@Target(AnnotationTarget.FUNCTION)
@Retention(AnnotationRetention.RUNTIME)
annotation class Mock(val code: Int = 0, val body: String = "")