14 lines
261 B
Dart
14 lines
261 B
Dart
/// Base home page
|
|
const homePage = "/";
|
|
|
|
/// Authentication path
|
|
const authPage = "/login";
|
|
|
|
/// Manual authentication
|
|
const manualAuthPage = "/login/manual";
|
|
|
|
/// Settings path
|
|
const settingsPage = "/settings";
|
|
|
|
// Profile path
|
|
const profilePage = "/profile"; |