You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fluffychat/lib/pangea/bot/utils/bot_name.dart

11 lines
364 B
Dart

import 'package:fluffychat/pangea/common/config/environment.dart';
class BotName {
static String get byEnvironment => Environment.botName != null
? Environment.botName!
: Environment.isStagingEnvironment
? "@bot:staging.pangea.chat"
: "@bot:pangea.chat";
static String get localBot => "@matrix-bot-test:staging.pangea.chat";
}