19 lines
304 B
Dart
19 lines
304 B
Dart
import 'package:getx_scaffold/getx_scaffold.dart';
|
|
|
|
class SiteController extends GetxController with BaseControllerMixin {
|
|
@override
|
|
String get builderId => 'site';
|
|
|
|
SiteController();
|
|
|
|
@override
|
|
void onInit() {
|
|
super.onInit();
|
|
}
|
|
|
|
@override
|
|
void onClose() {
|
|
super.onClose();
|
|
}
|
|
}
|