A framework for building convergent cross-platform Nextcloud clients using Flutter.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import 'core.dart' as core;
|
|
|
|
import 'helper.dart';
|
|
|
|
import 'news.dart' as news;
|
|
|
|
import 'notes.dart' as notes;
|
|
|
|
import 'notifications.dart' as notifications;
|
|
|
|
import 'provisioning_api.dart' as provisioning_api;
|
|
|
|
import 'uppush.dart' as uppush;
|
|
|
|
import 'user_status.dart' as user_status;
|
|
|
|
import 'webdav.dart' as webdav;
|
|
|
|
|
|
|
|
Future main() async {
|
|
|
|
final image = await getDockerImage();
|
|
|
|
await core.run(image);
|
|
|
|
await news.run(image);
|
|
|
|
await notes.run(image);
|
|
|
|
await notifications.run(image);
|
|
|
|
await provisioning_api.run(image);
|
|
|
|
await uppush.run(image);
|
|
|
|
await user_status.run(image);
|
|
|
|
await webdav.run(image);
|
|
|
|
}
|