Files
flutter_server_box/lib/data/res/misc.dart
2024-06-01 22:36:02 +08:00

24 lines
609 B
Dart

import 'dart:convert';
abstract final class Miscs {
static final blankReg = RegExp(r'\s+');
/// RegExp for password request
static final pwdRequestWithUserReg = RegExp(r'\[sudo\] password for (.+):');
/// Private Key max allowed size is 20kb
static const privateKeyMaxSize = 20 * 1024;
/// Editor max allowed size is 1mb
static const editorMaxSize = 1024 * 1024;
/// Max debug log lines
static const maxDebugLogLines = 100;
static const pkgName = 'tech.lolli.toolbox';
static const jsonEncoder = JsonEncoder.withIndent(' ');
static const bakFileName = 'srvbox_backup.json';
}