11 lines
193 B
Dart
Executable File
11 lines
193 B
Dart
Executable File
import 'package:get/get.dart';
|
|
|
|
import 'temp_state.dart';
|
|
|
|
/// @description:
|
|
/// @author
|
|
/// @date: 2024-06-27 10:17:16
|
|
class TempLogic extends GetxController {
|
|
final state = TempState();
|
|
}
|