aboutsummaryrefslogtreecommitdiff
path: root/shard/lib/application.ex
diff options
context:
space:
mode:
Diffstat (limited to 'shard/lib/application.ex')
-rw-r--r--shard/lib/application.ex7
1 files changed, 4 insertions, 3 deletions
diff --git a/shard/lib/application.ex b/shard/lib/application.ex
index 0daf48e..74b0dfd 100644
--- a/shard/lib/application.ex
+++ b/shard/lib/application.ex
@@ -14,14 +14,15 @@ defmodule Shard.Application do
# Define workers and child supervisors to be supervised
children = [
{ DynamicSupervisor, strategy: :one_for_one, name: Shard.DynamicSupervisor },
-
- # Applications & data store
- Shard.Manager,
# Networking
+ SNet.Addr,
SNet.Manager,
SNet.TCPServer,
+ # Applications & data store
+ Shard.Manager,
+
# Keys & identities
Shard.Keys,
{ Task, fn -> Shard.Keys.get_any_identity end },