blob: 9c4c9b448155f5047f64486718b533c4ad67bea0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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().
|