From 50f3c688a7cd4819680dbd19b9933c6cb5e62ca7 Mon Sep 17 00:00:00 2001 From: Brian Cully Date: Mon, 6 Feb 2012 19:44:47 -0500 Subject: Move most files into lib, add top-level makefile --- src/mysqlerl_sup.erl | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 src/mysqlerl_sup.erl (limited to 'src/mysqlerl_sup.erl') diff --git a/src/mysqlerl_sup.erl b/src/mysqlerl_sup.erl deleted file mode 100644 index 1ebfbf2..0000000 --- a/src/mysqlerl_sup.erl +++ /dev/null @@ -1,16 +0,0 @@ --module(mysqlerl_sup). --author('bjc@kublai.com'). - --behavior(supervisor). - --export([start_link/0, init/1]). - -start_link() -> - supervisor:start_link({local, ?MODULE}, ?MODULE, []). - -init([]) -> - ConnectionSup = {mysqlerl_connection_sup, - {mysqlerl_connection_sup, start_link, []}, - permanent, infinity, supervisor, - [mysqlerl_connection_sup]}, - {ok, {{one_for_one, 10, 5}, [ConnectionSup]}}. -- cgit v1.2.3