* Restructured files; Added parser placeholder * More restructuring * Added basic parser for hydrating template strings * Improved docs * More docs
7 lines
248 B
Elixir
7 lines
248 B
Elixir
defmodule Pinchflat.Downloader.Backends.BackendCommandRunner do
|
|
@moduledoc """
|
|
A behaviour for running CLI commands against a downloader backend
|
|
"""
|
|
|
|
@callback run(binary(), keyword()) :: {:ok, binary()} | {:error, binary(), integer()}
|
|
end
|