Smppex
SMPP 3.4 protocol and framework implementation in Elixir
Installation
The package can be installed as:
- Add
smppexto your list of dependencies inmix.exs:
```elixir
def deps do
[{:smppex, "~> 0.1.0"}]
end
```
- Ensure
smppexis started before your application:
```elixir
def application do
[applications: [:smppex]]
end
```