9 lines
156 B
Dart
9 lines
156 B
Dart
|
|
part of 'pages.dart';
|
||
|
|
|
||
|
|
sealed class AuthPaths {
|
||
|
|
AuthPaths._();
|
||
|
|
|
||
|
|
static const String moduleList = '/moduleList';
|
||
|
|
static const String auth = '/Auth';
|
||
|
|
}
|