summaryrefslogtreecommitdiff
path: root/lib/plugins/finance.ex
diff options
context:
space:
mode:
authorJordan Bracco <href@random.sh>2022-12-20 02:32:12 +0000
committerJordan Bracco <href@random.sh>2022-12-20 19:29:41 +0100
commit9aecb2bf2c4210d8b6b6976f749902b23ade83d6 (patch)
tree9547fdefe13f8c7695a8dea389ffd9d4ddbaf83c /lib/plugins/finance.ex
parentActually do not prefix folders with nola_ refs T77 (diff)
IRC.PubSub -> Nola.PubSub, refs T77
Diffstat (limited to 'lib/plugins/finance.ex')
-rw-r--r--lib/plugins/finance.ex6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/plugins/finance.ex b/lib/plugins/finance.ex
index d6f890a..3ecc2fb 100644
--- a/lib/plugins/finance.ex
+++ b/lib/plugins/finance.ex
@@ -52,9 +52,9 @@ defmodule Nola.Plugins.Finance do
def init([]) do
regopts = [plugin: __MODULE__]
- {:ok, _} = Registry.register(IRC.PubSub, "trigger:forex", regopts)
- {:ok, _} = Registry.register(IRC.PubSub, "trigger:currency", regopts)
- {:ok, _} = Registry.register(IRC.PubSub, "trigger:stocks", regopts)
+ {:ok, _} = Registry.register(Nola.PubSub, "trigger:forex", regopts)
+ {:ok, _} = Registry.register(Nola.PubSub, "trigger:currency", regopts)
+ {:ok, _} = Registry.register(Nola.PubSub, "trigger:stocks", regopts)
{:ok, nil}
end