diff options
Diffstat (limited to 'src/https')
-rw-r--r-- | src/https/Makefile | 5 | ||||
-rw-r--r-- | src/https/https_server.erl | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/https/Makefile b/src/https/Makefile new file mode 100644 index 0000000..ac3b57b --- /dev/null +++ b/src/https/Makefile @@ -0,0 +1,5 @@ +MODULES = https_server + +all: $(MODULES:%=%.beam) + +include ../Makefile.inc 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"). |