Current section
Files
Jump to
Current section
Files
lib/exstream_web/application.ex
defmodule Exstream.Application do
use Application
def start(_type, _args) do
opts = [strategy: :one_for_one, name: Exstream.Supervisor]
Supervisor.start_link([
{Plug.Cowboy, scheme: :http, plug: Exstream.Router, port: 4040}
], opts)
end
end