Packages
ex_service_mesh_router
1.0.0
A BEAM-native service mesh gateway for Phoenix umbrella applications with automatic service discovery. Tenant handling is owned by each Phoenix application.
Current section
Files
Jump to
Current section
Files
lib/router/application.ex
defmodule Router.Application do
use Application
def start(_type, _args) do
children = [
Router.Registry
]
opts = [strategy: :one_for_one, name: Router.Supervisor]
Supervisor.start_link(children, opts)
end
end