Skip to content

Instantly share code, notes, and snippets.

@KamilLelonek
Last active September 15, 2018 15:11
Show Gist options
  • Save KamilLelonek/3e39631112ed745e4e7550739a031054 to your computer and use it in GitHub Desktop.
Save KamilLelonek/3e39631112ed745e4e7550739a031054 to your computer and use it in GitHub Desktop.
defmodule MinimalServer.Endpoint do
# ...
def child_spec(opts) do
%{
id: __MODULE__,
start: {__MODULE__, :start_link, [opts]}
}
end
def start_link(_opts),
do: Plug.Adapters.Cowboy2.http(__MODULE__, [])
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment