O2DTNJ3ZOJJKDHGPNE2DZSZF7CFU4G5D65RIDOYZHYYBH3JZAAIAC
defmodule WaParser.MixProject do
use Mix.Project
def project do
[
app: :wa_parser,
version: "0.1.0",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end
defmodule WaParser do
@moduledoc """
Documentation for `WaParser`.
"""
@doc """
Hello world.
## Examples
iex> WaParser.hello()
:world
"""
def hello do
:world
end
end
# WaParser
**TODO: Add description**
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `wa_parser` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:wa_parser, "~> 0.1.0"}
]
end
```
Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at [https://hexdocs.pm/wa_parser](https://hexdocs.pm/wa_parser).