11 lines
319 B
Dart
11 lines
319 B
Dart
import 'dart:async';
|
|
|
|
import 'package:protevus_configuration/protevus_configuration.dart';
|
|
import 'package:protevus_framework/protevus_framework.dart';
|
|
import 'package:file/local.dart';
|
|
|
|
Future<void> main() async {
|
|
var app = Protevus();
|
|
var fs = const LocalFileSystem();
|
|
await app.configure(configuration(fs));
|
|
}
|