mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
15 lines
348 B
Dart
15 lines
348 B
Dart
import 'package:PiliPlus/http/user.dart';
|
|
import 'package:PiliPlus/utils/storage.dart';
|
|
|
|
class Data {
|
|
static Future<void> init() async {
|
|
if (!Accounts.main.isLogin) {
|
|
return;
|
|
}
|
|
var res = await UserHttp.historyStatus();
|
|
if (res['status']) {
|
|
GStorage.localCache.put(LocalCacheKey.historyPause, res['data']);
|
|
}
|
|
}
|
|
}
|