1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-02-16 21:52:38 +00:00
comunicmobile/lib/main_online.dart

19 lines
434 B
Dart
Raw Normal View History

2019-06-24 18:55:41 +02:00
import 'package:comunic/main.dart';
import 'package:comunic/models/config.dart';
/// Online (communiquons.org) build configuration for the project
///
/// @author Pierre HUBERT
void main() {
Config.set(Config(
2020-04-25 14:39:55 +02:00
apiServerName: "api.communiquons.org",
apiServerUri: "/",
apiServerSecure: true,
2021-02-13 16:03:07 +01:00
clientName: "ComunicFlutter",
2020-04-25 14:40:35 +02:00
termsOfServicesURL: "https://about.communiquons.org/about/terms/",
2020-04-25 14:39:55 +02:00
));
2019-06-24 18:55:41 +02:00
subMain();
}