diff options
author | Théophile Choutri <theophile@choutri.eu> | 2018-01-18 11:02:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-18 11:02:25 +0100 |
commit | 4562ee549c7213567585f33e75b8598940b55b86 (patch) | |
tree | 848766537cfb21cfde5b200dcbf4c27ceae8337b /lib/exirc/commands.ex | |
parent | Merge pull request #74 from tchoutri/add-whois (diff) |
Fix namespaces and improve internal consistency
Diffstat (limited to 'lib/exirc/commands.ex')
-rw-r--r-- | lib/exirc/commands.ex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/exirc/commands.ex b/lib/exirc/commands.ex index 0d959c0..c4833d5 100644 --- a/lib/exirc/commands.ex +++ b/lib/exirc/commands.ex @@ -1,4 +1,4 @@ -defmodule Irc.Commands do +defmodule ExIRC.Commands do @moduledoc """ Defines IRC command constants, and methods for generating valid commands to send to an IRC server. """ @@ -6,7 +6,7 @@ defmodule Irc.Commands do defmacro __using__(_) do quote do - import Irc.Commands + import ExIRC.Commands #################### # IRC Numeric Codes |