aboutsummaryrefslogtreecommitdiffstats
path: root/src/cache/user.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cache/user.rs')
-rw-r--r--src/cache/user.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cache/user.rs b/src/cache/user.rs
index 253773c..e228cc2 100644
--- a/src/cache/user.rs
+++ b/src/cache/user.rs
@@ -10,6 +10,7 @@ use super::{CacheFuture, CacheGetter, Cache, AsyncCache};
use crate::deserialize::{User, Track, TrackStub};
use crate::CONFIG;
+pub type UserInfo = Arc<(User, Track, TrackStub)>;
type UserFuture = CacheFuture<Arc<(User, Track, TrackStub)>>;
type UserGetter = CacheGetter<Arc<(User, Track, TrackStub)>>;
type UserCache = Cache<Arc<(User, Track, TrackStub)>>;