feat : live stock module
This commit is contained in:
25
packages/livestock/lib/presentation/routes/app_pages.dart
Normal file
25
packages/livestock/lib/presentation/routes/app_pages.dart
Normal file
@@ -0,0 +1,25 @@
|
||||
|
||||
import 'package:rasadyar_auth/auth.dart';
|
||||
import 'package:rasadyar_core/core.dart';
|
||||
import 'package:rasadyar_livestock/presentation/page/root/view.dart';
|
||||
|
||||
|
||||
part'app_routes.dart';
|
||||
|
||||
sealed class LiveStockPages {
|
||||
LiveStockPages._();
|
||||
|
||||
static final pages = [
|
||||
GetPage(
|
||||
name: LiveStockRoutes.init,
|
||||
page: () => RootPage(),
|
||||
middlewares: [AuthMiddleware()],
|
||||
binding: BindingsBuilder(() {
|
||||
|
||||
}),
|
||||
),
|
||||
|
||||
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user