diff options
Diffstat (limited to 'test/old_http_SUITE_data/rest_empty_resource.erl')
-rw-r--r-- | test/old_http_SUITE_data/rest_empty_resource.erl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/old_http_SUITE_data/rest_empty_resource.erl b/test/old_http_SUITE_data/rest_empty_resource.erl new file mode 100644 index 0000000..8a944cd --- /dev/null +++ b/test/old_http_SUITE_data/rest_empty_resource.erl @@ -0,0 +1,6 @@ +-module(rest_empty_resource). + +-export([init/2]). + +init(Req, Opts) -> + {cowboy_rest, Req, Opts}. |