diff options
author | Linus Nordberg <linus@nordberg.se> | 2014-05-03 10:54:55 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordberg.se> | 2014-05-03 10:54:55 +0200 |
commit | 68f6bdf0f88322867b35a6ae35a0c4c3ea641884 (patch) | |
tree | e11fbf5a349086bbed407f2020219a5d5c679820 /src/ctls.erl | |
parent | 7725f46cd64c5a405ffed6177019383ffe18dd8e (diff) |
Rename to ctls.
Diffstat (limited to 'src/ctls.erl')
-rw-r--r-- | src/ctls.erl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ctls.erl b/src/ctls.erl new file mode 100644 index 0000000..9c4c9b4 --- /dev/null +++ b/src/ctls.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('ctls'). +-export([start/0]). + +start() -> + io:format("Starting ctls~n"), + https_server:start(). |