12 lines
386 B
Dart
12 lines
386 B
Dart
/// Zentrale App-Konfiguration – alle URLs, Keys, Feature-Toggles
|
||
class AppConfig {
|
||
// Server-Adressen
|
||
static const navidromeUrl = 'https://musik.baka-net.de';
|
||
static const cloudUrl = 'https://cloud.baka-net.de';
|
||
static const logUrl = 'https://baka-net.de';
|
||
static const authUrl = 'https://baka-net.de/auth';
|
||
|
||
// Feature-Toggles
|
||
static bool sendeDiagnosedaten = true;
|
||
}
|