Skip to content

Instantly share code, notes, and snippets.

@aibou
Last active August 29, 2015 14:15
Show Gist options
  • Save aibou/49a8b42f2558bee20451 to your computer and use it in GitHub Desktop.
Save aibou/49a8b42f2558bee20451 to your computer and use it in GitHub Desktop.
こういうの欲しい
hello:
method: GET
patterns:
- request:
params:
name: "Tom"
response:
body: "Hello, Tom!"
- request:
params:
name: "Bob"
response:
body: "Who are you? I don't know that name"
$ curl http://localhost:7874/hello?name=Tom
Hello, Tom!
$ curl http://localhost:7874/hello?name=Bob
Who are you? I don\'t know that name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment