Packages
The component that lets a nde forward log messages to another node in the Bunyan distributed and pluggable logging system
Current section
Files
Jump to
Current section
Files
bunyan_writer_remote
mix.exs
mix.exs
Code.load_file("shared_build_stuff/mix.exs")
alias Bunyan.Shared.Build
defmodule BunyanWriterRemote.MixProject do
use Mix.Project
def project() do
Build.project(
:bunyan_writer_remote,
"0.1.0",
&deps/1,
"The component that lets a nde forward log messages to another node in the Bunyan distributed and pluggable logging system"
)
end
def application(), do: []
def deps(a) do
IO.inspect a
[
bunyan: [
bunyan_shared: ">= 0.0.0",
],
others: [],
]
end
end