KDLPatients/lib/app/core/config/api_config.dart

8 lines
154 B
Dart
Raw Normal View History

2024-09-25 17:20:07 +00:00
class ApiConfig {
static const String HOST = String.fromEnvironment(
'BASE_API_URL',
);
static const BASE_API_URL = 'https://$HOST/graphql';
}