mirror of
https://github.com/haorendashu/nowser.git
synced 2025-12-17 09:54:19 +01:00
11 lines
370 B
Dart
11 lines
370 B
Dart
class RouterPath {
|
|
static const String INDEX = "/";
|
|
static const String WEB_TABS = "/webTabs";
|
|
static const String WEB_URL_INPUT = "/webUrlInput";
|
|
static const String ME = "/me";
|
|
static const String KEYS = "/keys";
|
|
static const String APPS = "/apps";
|
|
static const String ADD_REMOTE_APP = "/addRemoteApp";
|
|
static const String APP_DETAIL = "/appDetail";
|
|
}
|