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