mirror of
https://github.com/revanced/revanced-manager.git
synced 2025-04-30 05:54:26 +02:00
10 lines
177 B
Dart
10 lines
177 B
Dart
import 'package:envied/envied.dart';
|
|
|
|
part 'env_class.g.dart';
|
|
|
|
@Envied()
|
|
abstract class Env {
|
|
@EnviedField(varName: 'sentryDSN')
|
|
static const sentryDSN = _Env.sentryDSN;
|
|
}
|