diff options
Diffstat (limited to 'lib/models/id/guild_id_t.ml')
| -rw-r--r-- | lib/models/id/guild_id_t.ml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/models/id/guild_id_t.ml b/lib/models/id/guild_id_t.ml index a39c07d..6d92045 100644 --- a/lib/models/id/guild_id_t.ml +++ b/lib/models/id/guild_id_t.ml @@ -1,8 +1,6 @@ -open Core
-
type t = [ `Guild_id of Snowflake.t ] [@@deriving sexp]
-let compare (`Guild_id t) (`Guild_id t') = Int.compare t t'
+let compare (`Guild_id t) (`Guild_id t') = Base.Int.compare t t'
let of_yojson a : (t, string) result =
match Snowflake.of_yojson a with
|