summaryrefslogtreecommitdiff
path: root/src/simplec.erl
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2015-09-19 14:03:02 +0200
committerGuido Günther <agx@sigxcpu.org>2015-09-19 14:12:09 +0200
commit4500b9a982f0e0803318d604a993ded16820dcd3 (patch)
tree3f70382fb23f0094b7da5afa7d2f22b67a7d3216 /src/simplec.erl
Initial commit
Diffstat (limited to 'src/simplec.erl')
-rwxr-xr-xsrc/simplec.erl10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/simplec.erl b/src/simplec.erl
new file mode 100755
index 0000000..7550349
--- /dev/null
+++ b/src/simplec.erl
@@ -0,0 +1,10 @@
+%% -*- erlang -*-
+
+-module(simplec).
+-export([start/0, stop/0]).
+
+start() ->
+ application:start(simplec).
+
+stop() ->
+ applictation:stop(simplec).