11 lines
212 B
Dart
11 lines
212 B
Dart
/// Base home page
|
|
const homePage = "/";
|
|
|
|
/// Authentication path
|
|
const authPage = "/login";
|
|
|
|
/// Manual authentication
|
|
const manualAuthPage = "/login/manual";
|
|
|
|
/// Settings path
|
|
const settingsPage = "/settings"; |