blob: 12c838539e066f43874d54eb92c6a598ac94422a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
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
|