Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 1.22 KB

README.md

File metadata and controls

44 lines (27 loc) · 1.22 KB

AliceGoodMorning

Hex Version Hex Downloads License: MIT

This handler will allow Alice to say good morning to people in different languages.

It does so only once each morning.

Installation

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

  1. Add alice_good_morning to your list of dependencies in mix.exs:
```elixir
defp deps do
   [
     {:websocket_client, github: "jeremyong/websocket_client"},
     {:alice, "~> 0.3"},
     {:alice_good_morning, "~> 1.0"}
   ]
end
```
  1. Add the handler to your list of registered handlers in mix.exs:
```elixir
def application do
  [applications: [:alice],
    mod: {
      Alice, [Alice.Handlers.GoodMorning, ...]}]
end
```

Usage

Use @alice help for more information.