aboutsummaryrefslogtreecommitdiffstats
path: root/examples/tcp_echo/src/tcp_echo.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-12-07 14:08:25 +0100
committerLoïc Hoguin <[email protected]>2013-12-07 14:08:25 +0100
commit0770e2893f88cd50020a621e4d3b813ff8e6c58f (patch)
treedb8086ef3b68ea205f69b7582334e579ff2dd907 /examples/tcp_echo/src/tcp_echo.erl
parentb0c37e853ef0600ca5b86216e427d767b6bc6126 (diff)
downloadranch-0770e2893f88cd50020a621e4d3b813ff8e6c58f.tar.gz
ranch-0770e2893f88cd50020a621e4d3b813ff8e6c58f.tar.bz2
ranch-0770e2893f88cd50020a621e4d3b813ff8e6c58f.zip
Fix small issues and style of the examples
Diffstat (limited to 'examples/tcp_echo/src/tcp_echo.erl')
-rw-r--r--examples/tcp_echo/src/tcp_echo.erl12
1 files changed, 0 insertions, 12 deletions
diff --git a/examples/tcp_echo/src/tcp_echo.erl b/examples/tcp_echo/src/tcp_echo.erl
deleted file mode 100644
index 46d31da..0000000
--- a/examples/tcp_echo/src/tcp_echo.erl
+++ /dev/null
@@ -1,12 +0,0 @@
-%% Feel free to use, reuse and abuse the code in this file.
-
--module(tcp_echo).
-
-%% API.
--export([start/0]).
-
-%% API.
-
-start() ->
- ok = application:start(ranch),
- ok = application:start(tcp_echo).