inou-mobile/lib/core/config.dart

11 lines
295 B
Dart

/// App configuration constants
class AppConfig {
static const String appName = 'inou';
static const String webAppUrl = 'https://inou.com/app';
// Feature flags
static const bool enableOcr = true;
static const bool enableVoice = true;
static const bool enableBiometrics = true;
}