Packages
border_guard
0.1.0
BorderGuard is a library for handling requests with a configurable delay and success/error response.
Current section
Files
Jump to
Current section
Files
border_guard
mix.exs
mix.exs
defmodule BorderGuard.MixProject do
use Mix.Project
def project do
[
app: :border_guard,
version: "0.1.0",
elixir: "~> 1.16",
start_permanent: Mix.env() == :prod,
build_embedded: Mix.env() == :prod,
description: description(),
package: package(),
name: "BorderGuard",
source_url: "https://github.com/SoundstripeEngineering/border_guard",
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {BorderGuard.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp description do
"""
BorderGuard is a library for handling requests with a configurable delay and success/error response.
"""
end
defp package do
[
name: "border_guard",
files: ["lib", "mix.exs", "README.md", "CHANGELOG.md", "LICENSE.md", ".formatter.exs"],
licenses: ["MIT"],
maintainers: ["Kyle Boe"],
links: %{"GitHub" => "https://github.com/SoundstripeEngineering/border_guard"}
]
end
end