%%% Copyright (c) 2014, NORDUnet A/S. %%% See LICENSE for licensing information. %% 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().