Packages
Mix tasks to generate JSON files from the Slack Web API docs.
Retired package: Deprecated - Package is unmaintained
Current section
Files
Jump to
Current section
Files
lib/slack_api_docs.ex
defmodule SlackApiDocs do
@moduledoc false
use Application
def start(_, _) do
Mix.shell().info("""
Warning: the `slack_api_docs` application's start function was called, which likely means you
did not add the dependency with the `runtime: false` flag. This is not recommended because
it will mean that unnecessary applications are started.
Please add `runtime: false` in your `mix.exs` dependency section e.g.:
{:slack_api_docs, "~> 0.1", only: [:dev], runtime: false}
""")
Supervisor.start_link([], strategy: :one_for_one)
end
end