2020-05-03 15:24:22 +00:00
|
|
|
import 'dart:async';
|
|
|
|
|
2024-10-13 01:45:27 +00:00
|
|
|
import 'package:protevus_configuration/protevus_configuration.dart';
|
|
|
|
import 'package:protevus_framework/protevus_framework.dart';
|
2018-07-12 16:40:54 +00:00
|
|
|
import 'package:file/local.dart';
|
|
|
|
|
2020-05-03 15:24:22 +00:00
|
|
|
Future<void> main() async {
|
2024-10-12 10:35:14 +00:00
|
|
|
var app = Protevus();
|
2018-07-12 16:40:54 +00:00
|
|
|
var fs = const LocalFileSystem();
|
|
|
|
await app.configure(configuration(fs));
|
|
|
|
}
|