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/utils/bot_name.dart

8 lines
267 B
Dart

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