mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-02 18:19:30 +01:00
12 lines
542 B
Dart
12 lines
542 B
Dart
abstract class AppConfig {
|
|
static const String applicationName = 'FluffyChat';
|
|
static const String defaultHomeserver = 'matrix.tchncs.de';
|
|
static const String privacyUrl = 'https://fluffychat.im/en/privacy.html';
|
|
static const String sourceCodeUrl =
|
|
'https://gitlab.com/ChristianPauly/fluffychat-flutter';
|
|
static const String supportUrl =
|
|
'https://gitlab.com/ChristianPauly/fluffychat-flutter/issues';
|
|
static const String sentryDsn =
|
|
'https://8591d0d863b646feb4f3dda7e5dcab38@o256755.ingest.sentry.io/5243143';
|
|
}
|