diff options
Diffstat (limited to 'src/catlfish.erl')
-rw-r--r-- | src/catlfish.erl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/catlfish.erl b/src/catlfish.erl new file mode 100644 index 0000000..cfdec8b --- /dev/null +++ b/src/catlfish.erl @@ -0,0 +1,6 @@ +-module('catlfish'). +-export([start/0]). + +start() -> + io:format("Starting catlfish~n"), + https_server:start(). |