mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
18 lines
421 B
Dart
18 lines
421 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,
|
|
serviceName: "ComunicFlutter",
|
|
serviceToken: "9KfSwmB76U9UUwjXngDG7PeYccNfy"));
|
|
|
|
subMain();
|
|
}
|