aboutsummaryrefslogtreecommitdiff
path: root/lib/models/id/guild_id_t.ml
blob: 6fc37777b2bae53fc77e9ab74e73b586830ea33d (plain) (blame)
1
2
3
4
5
6
7
open Core

type t = [ `Guild_id of Snowflake.t ] [@@deriving sexp, yojson]

let compare (`Guild_id t) (`Guild_id t') = Int64.compare t t'

let get_id (`Guild_id id) = id