summaryrefslogtreecommitdiffstats
path: root/src/core/ephraim.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/ephraim.erl')
-rw-r--r--src/core/ephraim.erl9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/core/ephraim.erl b/src/core/ephraim.erl
index a7a872b..d558eda 100644
--- a/src/core/ephraim.erl
+++ b/src/core/ephraim.erl
@@ -23,7 +23,14 @@ stop() ->
-spec init() -> ok.
init() ->
register(ephraim, self()),
-
+
+ Config = spawn(ephraim_config, init, []),
+ % Wait for config process
+ receive
+ {Config, started} ->
+ io:format("Reading config file...~n")
+ end,
+
GUI = spawn(ephraim_gui, init, []),
Conn = spawn(ephraim_conn, init, []),
Roster = spawn(ephraim_roster, init, []),