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

Move the type application_start_type() into cowboy_app.

This commit is contained in:
Loïc Hoguin 2011-04-18 13:27:42 +02:00
parent 2beb5c8206
commit db7833f5e8
2 changed files with 3 additions and 3 deletions

View file

@ -12,8 +12,5 @@
%% ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
%% OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-type application_start_type() :: normal |
{takeover, Node::node()} | {failover, Node::node()}.
-type posix() :: atom().
-type port_number() :: 0..65535.

View file

@ -17,6 +17,9 @@
-export([start/2, stop/1]). %% API.
-type application_start_type() :: normal |
{takeover, Node::node()} | {failover, Node::node()}.
-include("include/types.hrl").
%% API.