Packages

PLM Product Lifecycle Management

Current section

Files

Jump to
bud lib application.ex
Raw

lib/application.ex

defmodule PLM.Application do
use Application
def start(_, _) do
:cowboy.start_tls(:http, :n2o_cowboy.env(:bud), %{env: %{dispatch: :n2o_cowboy2.points()}})
Supervisor.start_link([], strategy: :one_for_one, name: PLM.Supervisor)
end
end