https://github.com/vic/discordex
Discord API for Elixir
https://github.com/vic/discordex
Last synced: 8 months ago
JSON representation
Discord API for Elixir
- Host: GitHub
- URL: https://github.com/vic/discordex
- Owner: vic
- License: apache-2.0
- Created: 2015-12-12T07:48:37.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-27T07:19:34.000Z (over 10 years ago)
- Last Synced: 2025-02-09T21:11:56.975Z (over 1 year ago)
- Language: Elixir
- Size: 23.4 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Discordex
Discord API for Elixir
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed as:
1. Add discordex to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:discordex, "~> 0.0.1"}]
end
```
2. Ensure discordex is started before your application:
```elixir
def application do
[applications: [:discordex]]
end
```