Packages

A framework for building chat bots

Current section

Files

Jump to
clover lib user.ex
Raw

lib/user.ex

defmodule Clover.User do
@moduledoc """
A chat user
"""
defstruct id: nil,
name: nil
@type t :: %__MODULE__{
id: String.t(),
name: String.t()
}
end