1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 06:53:23 +00:00
comunicmobile/lib/main_online.dart

19 lines
434 B
Dart

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(
apiServerName: "api.communiquons.org",
apiServerUri: "/",
apiServerSecure: true,
clientName: "ComunicFlutter",
termsOfServicesURL: "https://about.communiquons.org/about/terms/",
));
subMain();
}