first commit

This commit is contained in:
2025-03-03 20:59:42 +03:00
commit 273e68557a
1099 changed files with 17880 additions and 0 deletions

12
lib/components/env/prod_env.dart vendored Normal file
View File

@@ -0,0 +1,12 @@
part of '../env.dart';
///
/// Продакшн сборка
///
class ProdEnv extends Env {
@override
Uri get url => Uri.parse('https://api.remever.dizoft-studio.ru');
@override
String get mode => 'prod';
}