diff options
author | Jordan Bracco <href@random.sh> | 2022-12-20 02:47:33 +0000 |
---|---|---|
committer | Jordan Bracco <href@random.sh> | 2022-12-20 19:29:41 +0100 |
commit | 2127553ad058bfa688feb73097e604a8fb5a1899 (patch) | |
tree | 3246c31aef0f6c3a110376de21265a6f5d02c597 /lib/irc/account.ex | |
parent | IRC.PubSub -> Nola.PubSub, refs T77 (diff) |
Rename IRC.Account to Nola.Account, refs T77
Diffstat (limited to '')
-rw-r--r-- | lib/nola/account.ex (renamed from lib/irc/account.ex) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/irc/account.ex b/lib/nola/account.ex index a39733c..cd424ef 100644 --- a/lib/irc/account.ex +++ b/lib/nola/account.ex @@ -1,4 +1,4 @@ -defmodule IRC.Account do +defmodule Nola.Account do alias IRC.UserTrack.User @moduledoc """ @@ -27,7 +27,7 @@ defmodule IRC.Account do import Inspect.Algebra def inspect(%{id: id, name: name}, opts) do - concat(["#IRC.Account[", id, " ", name, "]"]) + concat(["#Nola.Account[", id, " ", name, "]"]) end end |