summaryrefslogtreecommitdiff
path: root/src/catlfish.erl
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordberg.se>2014-06-10 20:27:06 +0200
committerLinus Nordberg <linus@nordberg.se>2014-06-10 20:27:06 +0200
commitf473802d5ebe9192c635c477d053523b2baaa3a3 (patch)
tree93715c463006a28fddcd2dd55fb49abae9169e71 /src/catlfish.erl
parenta59474f202b8115a8bff58101b1b9847551764ce (diff)
Change ctls -> catlfish.
Diffstat (limited to 'src/catlfish.erl')
-rw-r--r--src/catlfish.erl12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/catlfish.erl b/src/catlfish.erl
new file mode 100644
index 0000000..015d8b4
--- /dev/null
+++ b/src/catlfish.erl
@@ -0,0 +1,12 @@
+%% This is a CA transparency log.
+
+%% In order to find https_server and other required modules, a couple
+%% of subdirectories need to be added to the Erlang path
+%% (code:add_pathz/1). This can be done in an ~/.erlang file.
+
+-module('catlfish').
+-export([start/0]).
+
+start() ->
+ io:format("Starting catlfish~n"),
+ https_server:start().