Fixed the build

This commit is contained in:
Marcin Grzejszczak
2019-08-12 16:02:36 +02:00
parent 3aa8482f95
commit cd946fe01c
4 changed files with 8 additions and 11 deletions

View File

@@ -27,6 +27,7 @@ class MyHttpContract implements Supplier<Contract> {
c.request(r -> {
r.method(r.GET());
r.url("/example");
r.body(r.file("request.json"));
});
c.response(r -> {
r.status(r.OK());

View File

@@ -0,0 +1 @@
{ "hello" : "world" }