diff options
author | href <href@random.sh> | 2021-01-11 15:53:02 +0100 |
---|---|---|
committer | href <href@random.sh> | 2021-01-11 15:53:02 +0100 |
commit | 0f3f0e035b43eabd3f739c41964446962cf54208 (patch) | |
tree | 9279c54e100c92375c9d980e2031e0a153245025 /lib/irc/batch.ex | |
parent | Some fixes (diff) |
Cont. wipmaster
Diffstat (limited to 'lib/irc/batch.ex')
-rw-r--r-- | lib/irc/batch.ex | 11 |
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 |