From 4a30198f9068cc989616c8088e4b890bc1de259d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Wed, 4 Sep 2013 19:24:54 +0200 Subject: Make cowlib a proper dependency Start moving a few functions from Cowboy into cowlib. --- guide/getting_started.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'guide/getting_started.md') diff --git a/guide/getting_started.md b/guide/getting_started.md index abd807a..2ad67db 100644 --- a/guide/getting_started.md +++ b/guide/getting_started.md @@ -3,10 +3,12 @@ Getting started Cowboy does nothing by default. -Cowboy requires the `crypto` and `ranch` applications to be started. +Cowboy requires the `crypto`, `cowlib` and `ranch` applications to be +started. ``` erlang ok = application:start(crypto). +ok = application:start(cowlib). ok = application:start(ranch). ok = application:start(cowboy). ``` -- cgit v1.2.3