Skip to content

Instantly share code, notes, and snippets.

@jwalgemoed
Last active December 28, 2017 10:07
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 jwalgemoed/eb5db33dac647844e93a527daa09450d to your computer and use it in GitHub Desktop.
Save jwalgemoed/eb5db33dac647844e93a527daa09450d to your computer and use it in GitHub Desktop.
val contract = contract {
request {
path = "/api/hello/Jarno"
method = HttpMethod.GET
headers {
accept("application/json")
}
}
response {
status = HttpStatus.OK
body = """{ "message": "Hi, Jarno!" }"""
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment