aboutsummaryrefslogtreecommitdiff
path: root/eco_watcher.erl
diff options
context:
space:
mode:
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.