Current section
Files
Jump to
Current section
Files
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