Packages

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
ex_service_mesh_router lib router application.ex
Raw

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