Files
plezy/lib/services/donation_service.dart
T
2026-04-19 11:52:46 +02:00

8 lines
210 B
Dart

class DonationService {
static const String donationUrl = 'https://liberapay.com/edde746';
static bool get isEnabled {
return const bool.fromEnvironment('ENABLE_DONATIONS', defaultValue: false);
}
}