summaryrefslogtreecommitdiff
path: root/lib/irc/batch.ex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/irc/batch.ex')
-rw-r--r--lib/irc/batch.ex11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/irc/batch.ex b/lib/irc/batch.ex
new file mode 100644
index 0000000..12c8385
--- /dev/null
+++ b/lib/irc/batch.ex
@@ -0,0 +1,11 @@
+defmodule Irc.Batch do
+ defstruct [:type, :args, :lines, :tags, :outer, :batches, :source, {:__private__, %{}}]
+ @type t :: %__MODULE__{
+ type: String.t(),
+ source: Irc.Addressable.t(),
+ args: [String.t()],
+ lines: [Irc.Line.t()],
+ tags: Map.new(),
+ }
+
+end