diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-02-27 14:40:15 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-02-27 14:40:15 +0100 |
| commit | c05bfcc2775f0e11db6e856bfcf06d0419c35d54 (patch) | |
| tree | ffd0e9fcf6b476a6198287085a514cfa7940c200 /common/src/user.rs | |
| parent | 4ba86694e393c61107e27c4127efc0455b329524 (diff) | |
| download | jellything-c05bfcc2775f0e11db6e856bfcf06d0419c35d54.tar jellything-c05bfcc2775f0e11db6e856bfcf06d0419c35d54.tar.bz2 jellything-c05bfcc2775f0e11db6e856bfcf06d0419c35d54.tar.zst | |
ui changed before object slices
Diffstat (limited to 'common/src/user.rs')
| -rw-r--r-- | common/src/user.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/common/src/user.rs b/common/src/user.rs index 636046f..6511b10 100644 --- a/common/src/user.rs +++ b/common/src/user.rs @@ -4,7 +4,9 @@ Copyright (C) 2026 metamuffin <metamuffin.org> */ -use jellyobject::{Tag, enums, fields}; +use jellyobject::{Object, Tag, enums, fields}; + +pub type User<'a> = Object<'a>; fields! { USER_LOGIN: &str = b"Ulgn"; |