Packages
Burrito is our answer to the problem of distributing Elixir applications across varied environments. Turn your Elixir application into a simple, self-contained, single-file executable for MacOS, Linux, and Windows.
Current section
Files
Jump to
Current section
Files
lib/builder/step.ex
defmodule Burrito.Builder.Step do
@doc """
This function is called when the step is to be executed by the build phase.
It should return a context to be passed along to the next build step or phase.
"""
@callback execute(Burrito.Builder.Context.t()) :: Burrito.Builder.Context.t()
end