GTIN

Elixir datatype and common functions for Global Trade Item Numbers (GTIN).

Installation

The package can be installed as:

  1. Add gtin to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:gtin, "~> 0.1.0"}]
end
```
  1. Ensure gtin is started before your application:
```elixir
def application do
  [applications: [:gtin]]
end
```