mirror of
https://github.com/friebetill/TubeCards.git
synced 2025-08-06 16:40:38 +08:00
15 lines
559 B
Dart
15 lines
559 B
Dart
import 'package:envify/envify.dart';
|
|
|
|
part 'env.g.dart';
|
|
|
|
@Envify()
|
|
abstract class Env {
|
|
static const String revenueCatAppleApiKey = _Env.revenueCatAppleApiKey;
|
|
static const String revenueCatGoogleApiKey = _Env.revenueCatGoogleApiKey;
|
|
static const String azureSubscriptionKey = _Env.azureSubscriptionKey;
|
|
static const String unsplashAccessToken = _Env.unsplashAccessToken;
|
|
static const String sentryDSN = _Env.sentryDSN;
|
|
static const String amplitudeKeyProd = _Env.amplitudeKeyProd;
|
|
static const String amplitudeKeyDev = _Env.amplitudeKeyDev;
|
|
}
|