Up

module User

: sig

Git user actions.

#
type t = {
# name
: string;
# email
: string;
# date
: string;
}

A user action has a (user) name, an (user) email and an (action) date.

include Object.S with type t := t
end