No description
Find a file
2016-12-08 00:27:27 +01:00
config json_ld: mix new json_ld --module JSON.LD 2016-12-08 00:27:27 +01:00
lib json_ld: mix new json_ld --module JSON.LD 2016-12-08 00:27:27 +01:00
test json_ld: mix new json_ld --module JSON.LD 2016-12-08 00:27:27 +01:00
.gitignore json_ld: mix new json_ld --module JSON.LD 2016-12-08 00:27:27 +01:00
mix.exs json_ld: mix new json_ld --module JSON.LD 2016-12-08 00:27:27 +01:00
README.md json_ld: mix new json_ld --module JSON.LD 2016-12-08 00:27:27 +01:00

JSON.LD

TODO: Add description

Installation

If available in Hex, the package can be installed as:

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