fix router

This commit is contained in:
Ery Lee 2012-12-19 13:45:04 +08:00
parent f0e017f22f
commit bac534c8c8
1 changed files with 6 additions and 6 deletions

View File

@ -7,13 +7,13 @@
-behaviour(gen_server). -behaviour(gen_server).
-export([init/1, -export([init/1,
handle_call/3, handle_call/3,
handle_cast/2, handle_cast/2,
handle_info/2, handle_info/2,
terminate/2, terminate/2,
code_change/3]). code_change/3]).
-record(state,{}). -record(state, {}).
start_link() -> start_link() ->
gen_server:start_link({local, ?MODULE}, ?MODULE, [], []). gen_server:start_link({local, ?MODULE}, ?MODULE, [], []).