mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-20 17:16:29 +08:00
15 lines
279 B
Dart
15 lines
279 B
Dart
import 'package:get/get.dart';
|
|
import 'package:pilipala/http/user.dart';
|
|
|
|
class MineController extends GetxController {
|
|
@override
|
|
void onInit() {
|
|
super.onInit();
|
|
// queryUserInfo();
|
|
}
|
|
|
|
Future queryUserInfo() async {
|
|
var res = await UserHttp.userInfo();
|
|
}
|
|
}
|