Packages

This is a simple mix task to version bump a mix project.

Current section

Files

Jump to
mix_bump lib mix-bump command adapter.ex
Raw

lib/mix-bump/command/adapter.ex

defmodule MixBump.Command.Adapter do
@moduledoc """
A small adapter for the execution of shell commands.
"""
@callback execute(String.t()) :: :ok | :error
@callback task(String.t()) :: any()
end