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