diff options
| author | Adelyn Breedlove <[email protected]> | 2019-01-27 14:09:33 -0700 |
|---|---|---|
| committer | Adelyn Breedlove <[email protected]> | 2019-01-27 14:09:33 -0700 |
| commit | fbd3597c7ab798cf10a447eb2b477dd4e3ed6d33 (patch) | |
| tree | 16d1ef889e9c6f1090dd911e6fb31392625066c2 /lib/models/user/user_t.ml | |
| parent | hopeful reconnection fix (diff) | |
| download | disml-fbd3597c7ab798cf10a447eb2b477dd4e3ed6d33.tar.xz disml-fbd3597c7ab798cf10a447eb2b477dd4e3ed6d33.zip | |
Switch to ID abstractions internally
Diffstat (limited to 'lib/models/user/user_t.ml')
| -rw-r--r-- | lib/models/user/user_t.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/models/user/user_t.ml b/lib/models/user/user_t.ml index 52dbaf4..89a6895 100644 --- a/lib/models/user/user_t.ml +++ b/lib/models/user/user_t.ml @@ -1,11 +1,11 @@ open Core type partial_user = { - id: Snowflake.t; + id: User_id_t.t; } [@@deriving sexp, yojson { strict = false}] type t = { - id: Snowflake.t; + id: User_id_t.t; username: string; discriminator: string; avatar: string option [@default None]; |