20 lines
367 B
Dart
20 lines
367 B
Dart
/// Base home page
|
|
const homePage = "/";
|
|
|
|
/// Authentication path
|
|
const authPage = "/login";
|
|
|
|
/// Qr Code authentication
|
|
const qrAuthPath = "/login/qr";
|
|
|
|
/// Manual authentication
|
|
const manualAuthPage = "/login/manual";
|
|
|
|
/// Settings path
|
|
const settingsPage = "/settings";
|
|
|
|
/// Scan URL path
|
|
const scanPage = "/scan";
|
|
|
|
/// Profile path
|
|
const profilePage = "/profile"; |