Skip to content

Instantly share code, notes, and snippets.

@mhmdcs
Created July 28, 2022 21:25
Show Gist options
  • Save mhmdcs/9ba4a49c102eb8e30bee3ba9ec07cacd to your computer and use it in GitHub Desktop.
Save mhmdcs/9ba4a49c102eb8e30bee3ba9ec07cacd to your computer and use it in GitHub Desktop.
Mock API responses with annotation and interceptor.
@Target(AnnotationTarget.FUNCTION)
@Retention(AnnotationRetention.RUNTIME)
annotation class Mock(val code: Int = 0, val body: String = "")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment