Packages

Shared functionality of the Bunyan distributed and pluggable logging system

Current section

Files

Jump to
Raw

mix.exs

defmodule BunyanShared.MixProject do
use Mix.Project
Code.load_file("shared_build_stuff/mix.exs")
alias Bunyan.Shared.Build
def project do
Build.project(
:bunyan_shared,
&deps/1,
"Shared functionality of the Bunyan distributed and pluggable logging system"
)
end
def deps(_), do: []
def application(), do: []
end