Current section

Files

Jump to
coffee_compiler lib coffee_compiler application.ex
Raw

lib/coffee_compiler/application.ex

defmodule CoffeeCompiler.Application do
@moduledoc false
use Application
def start(_type, _args) do
Supervisor.start_link([Coffee.Context], strategy: :one_for_one)
end
end