0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-16 05:00:24 +00:00

Have only one -export and -export_type per line

This should make easier spotting additions and removals in commits.
This commit is contained in:
Loïc Hoguin 2012-08-27 12:16:07 +02:00
parent e4124de2c7
commit a5e75219f0
13 changed files with 159 additions and 57 deletions

View file

@ -177,9 +177,15 @@
-export([init/3]).
%% cowboy_http_rest callbacks
-export([rest_init/2, allowed_methods/2, malformed_request/2,
resource_exists/2, forbidden/2, last_modified/2, generate_etag/2,
content_types_provided/2, file_contents/2]).
-export([rest_init/2]).
-export([allowed_methods/2]).
-export([malformed_request/2]).
-export([resource_exists/2]).
-export([forbidden/2]).
-export([last_modified/2]).
-export([generate_etag/2]).
-export([content_types_provided/2]).
-export([file_contents/2]).
%% internal
-export([path_to_mimetypes/2]).