mirror of
https://github.com/Dvorinka/1356.git
synced 2026-06-04 03:52:57 +00:00
12 lines
285 B
Dart
12 lines
285 B
Dart
class Env {
|
|
static const String supabaseUrl = String.fromEnvironment(
|
|
'SUPABASE_URL',
|
|
defaultValue: 'https://your-project.supabase.co',
|
|
);
|
|
|
|
static const String supabaseAnonKey = String.fromEnvironment(
|
|
'SUPABASE_ANON_KEY',
|
|
defaultValue: 'your-anon-key',
|
|
);
|
|
}
|