From fc91136080140daf6fad6a7213d90c4cc9181aa2 Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Fri, 21 Mar 2014 13:55:39 +0100 Subject: Add some skeleton. --- src/https/Makefile | 5 +++++ src/https/https_server.erl | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 src/https/Makefile create mode 100644 src/https/https_server.erl (limited to 'src/https') 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"). -- cgit v1.1