Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryanwinchester/hedwig_currency
Hedwig Currency Conversion Responder
https://github.com/ryanwinchester/hedwig_currency
bot hedwig irc-bot responder slack-bot
Last synced: about 12 hours ago
JSON representation
Hedwig Currency Conversion Responder
- Host: GitHub
- URL: https://github.com/ryanwinchester/hedwig_currency
- Owner: ryanwinchester
- Created: 2017-06-27T00:51:51.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-12T20:41:05.000Z (about 6 years ago)
- Last Synced: 2024-10-13T17:09:50.325Z (28 days ago)
- Topics: bot, hedwig, irc-bot, responder, slack-bot
- Language: Elixir
- Size: 10.7 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hedwig Currency Conversion Responder
[![Hex.pm](https://img.shields.io/hexpm/v/hedwig_currency.svg)](https://hex.pm/packages/hedwig_currency)
[![Hex.pm](https://img.shields.io/hexpm/l/hedwig_currency.svg)](https://hex.pm/packages/hedwig_currency)
[![Hex.pm](https://img.shields.io/hexpm/dt/hedwig_currency.svg)](https://hex.pm/packages/hedwig_currency)
[![Build Status](https://travis-ci.org/ryanwinchester/hedwig_currency.svg?branch=master)](https://travis-ci.org/ryanwinchester/hedwig_currency)## Installation
Add to the deps in `mix.exs`
```elixir
def deps do
[
{:hedwig_currency, "~> 0.1.0"},
]
end
```Add the responder to your `:responders` list in your bot config, `config/config.exs`
```elixir
config :my_robot, MyApp.MyRobot,
responders: [
{Hedwig.Responders.Currency, []},
]
```