Files
mudblock/lib/core/features/builtin_command.dart
2023-10-07 03:16:37 +03:00

21 lines
419 B
Dart

class BuiltinCommand {
static help() {
const sep =
'--------------------------------------------------------------------------------';
final year = DateTime.now().year;
return '''
$sep
Mudblock - Help
$sep
Mudblock is a cross-platform MUD client.
See more information at https://github.com/chenasraf/mudblock
$sep
Developed by Chen Asraf
Copyright © $year - All Rights Reserved
$sep
''';
}
}