aboutsummaryrefslogtreecommitdiff
path: root/eco_watcher.erl
diff options
context:
space:
mode:
authorNathan Lasseter <Nathan Lasseter nathan@bytemark.co.uk>2014-05-30 13:34:17 +0100
committerNathan Lasseter <Nathan Lasseter nathan@bytemark.co.uk>2014-05-30 13:34:17 +0100
commit08fecb93995728ab53d78beefc329331d79f303f (patch)
tree3ba80e9dede138ce108ad53183cecc47069c736e /eco_watcher.erl
parent59cee25c7f863e76bc82cd58b33f6f3b4e13770c (diff)
Added directory structure and Makefile
Diffstat (limited to 'eco_watcher.erl')
-rw-r--r--eco_watcher.erl12
1 files changed, 0 insertions, 12 deletions
diff --git a/eco_watcher.erl b/eco_watcher.erl
deleted file mode 100644
index f2b6e25..0000000
--- a/eco_watcher.erl
+++ /dev/null
@@ -1,12 +0,0 @@
--module(eco_watcher).
--export([watcher/0]).
-
-watcher() ->
- receive
- {From, stop} ->
- From ! {ok, stopped},
- {ok, stopped};
- Msg ->
- io:format("~p~n", [Msg]),
- watcher()
- end.