holder/lib/mithridate/command.ex

6 lines
186 B
Elixir

defmodule Mithridate.Command do
@type t :: %__MODULE__{}
@enforce_keys [:name, :module]
defstruct name: nil, description: "", options: [], nsfw: false, type: nil, module: nil
end