mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-17 22:14:28 +01:00
Added a FeatureFlags utility class to manage feature toggling within the application. This initial commit introduces a flag for the userExperienceIterationTwo feature, allowing for controlled testing and phased rollout as development progresses. The flag can be manually adjusted as needed.
4 lines
86 B
Dart
4 lines
86 B
Dart
class FeatureFlags {
|
|
static const bool userExperienceIterationTwoEnabled = false;
|
|
}
|