Skip to content

Instantly share code, notes, and snippets.

@s1monw1
Created September 15, 2022 20:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save s1monw1/f8c1fc19cd5e6481829be37819340427 to your computer and use it in GitHub Desktop.
Save s1monw1/f8c1fc19cd5e6481829be37819340427 to your computer and use it in GitHub Desktop.
const val ENDPOINT = "https://api.github.com/repos/jetbrains/kotlin/contributors"
@JsonIgnoreProperties(ignoreUnknown = true)
data class Contributor(
val login: String,
val contributions: Int
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment