2020-09-18 10:58:22 +00:00
|
|
|
abstract class AppConfig {
|
|
|
|
static const String applicationName = 'FluffyChat';
|
|
|
|
static const String defaultHomeserver = 'matrix.tchncs.de';
|
2020-10-03 09:11:28 +00:00
|
|
|
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';
|
2020-09-18 10:58:22 +00:00
|
|
|
}
|