mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-17 11:00:07 +00:00
24 lines
327 B
Objective-C
24 lines
327 B
Objective-C
//
|
|
// LOTCacheProvider.m
|
|
// Lottie
|
|
//
|
|
// Created by punmy on 2017/7/8.
|
|
//
|
|
//
|
|
|
|
#import "LOTCacheProvider.h"
|
|
|
|
@implementation LOTCacheProvider
|
|
|
|
static id<LOTImageCache> _imageCache;
|
|
|
|
+ (id<LOTImageCache>)imageCache {
|
|
return _imageCache;
|
|
}
|
|
|
|
+ (void)setImageCache:(id<LOTImageCache>)cache {
|
|
_imageCache = cache;
|
|
}
|
|
|
|
@end
|