11 lines
192 B
Dart
Executable File
11 lines
192 B
Dart
Executable File
import 'package:get/get.dart';
|
|
|
|
import 'main_state.dart';
|
|
|
|
/// @description:
|
|
/// @author
|
|
/// @date: 2024-06-26 14:23:43
|
|
class MainLogic extends GetxController {
|
|
final state = MainState();
|
|
}
|