defmodule Botica do @moduledoc """ Botica provides environment diagnostics and health checks. ## Dependencies Requires `:apero` and `:arrea` as dependencies. """ @doc """ Returns the Doctor module for running diagnostics. """ defdelegate run(config), to: Botica.Doctor, as: :run end