Add Omnibot.Module.Agent which implements the basic agent cfg + state persistence functionality, which is then included in the Omnibot.Module. Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
9 lines
148 B
Elixir
9 lines
148 B
Elixir
defmodule Omnibot.Module do
|
|
defmacro __using__([]) do
|
|
quote do
|
|
use Omnibot.Module.Base
|
|
use Omnibot.Module.Agent
|
|
end
|
|
end
|
|
end
|