mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
21 lines
496 B
Dart
21 lines
496 B
Dart
import 'package:hive/hive.dart';
|
|
import 'package:PiliPalaX/http/user.dart';
|
|
|
|
import 'storage.dart';
|
|
|
|
class Data {
|
|
static Future init() async {
|
|
await historyStatus();
|
|
}
|
|
|
|
static Future historyStatus() async {
|
|
Box localCache = GStrorage.localCache;
|
|
Box userInfoCache = GStrorage.userInfo;
|
|
if (userInfoCache.get('userInfoCache') == null) {
|
|
return;
|
|
}
|
|
var res = await UserHttp.historyStatus();
|
|
localCache.put(LocalCacheKey.historyPause, res.data['data']);
|
|
}
|
|
}
|