mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2026-01-10 21:26:18 +00:00
fix: add env file to repo.
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -139,7 +139,6 @@ Firebase related
|
||||
|
||||
# Environment variables
|
||||
.env
|
||||
lib\utils\env_class.g.dart
|
||||
/lib/utils/env_class.dart
|
||||
/lib/firebase_options.dart
|
||||
android/app/google-services.json
|
||||
/lib/utils/env_class.g.dart
|
||||
9
lib/utils/env_class.dart
Normal file
9
lib/utils/env_class.dart
Normal file
@@ -0,0 +1,9 @@
|
||||
import 'package:envied/envied.dart';
|
||||
|
||||
part 'env_class.g.dart';
|
||||
|
||||
@Envied()
|
||||
abstract class Env {
|
||||
@EnviedField(varName: 'sentryDSN')
|
||||
static const sentryDSN = _Env.sentryDSN;
|
||||
}
|
||||
Reference in New Issue
Block a user