diff options
author | Joe Zhao <ztuowen@gmail.com> | 2014-05-16 20:16:33 +0800 |
---|---|---|
committer | Joe Zhao <ztuowen@gmail.com> | 2014-05-16 20:16:33 +0800 |
commit | 859179718904a1824082fdbbf77192bd1ce762e7 (patch) | |
tree | 2869db33b8c21416676d6fc01eb65a079c318f83 /fakedev.erl | |
download | local-859179718904a1824082fdbbf77192bd1ce762e7.tar.gz local-859179718904a1824082fdbbf77192bd1ce762e7.tar.bz2 local-859179718904a1824082fdbbf77192bd1ce762e7.zip |
First commit
Diffstat (limited to 'fakedev.erl')
-rw-r--r-- | fakedev.erl | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/fakedev.erl b/fakedev.erl new file mode 100644 index 0000000..20f1311 --- /dev/null +++ b/fakedev.erl @@ -0,0 +1,27 @@ +%%%------------------------------------------------------------------- +%%% @author Joe Zhao +%%% @copyright (C) 2014, <COMPANY> +%%% @doc +%%% +%%% @end +%%% Created : 29. 四月 2014 19:14 +%%%------------------------------------------------------------------- +-module(fakedev). +-author("Joe Zhao"). + +-compile([export_all,debug_info]). + +%% API +%% -export([]). + +devmon() -> + ok. + +stopdev(Addr) -> + ok. + +startdev(Addr) -> + ok. + +start() -> + spawn(?MODULE,devmon(),[orddict:new()]).
\ No newline at end of file |