Files
dde_gesture_manager/api/lib/src/config/plugins/plugins.dart
T

9 lines
238 B
Dart
Raw Normal View History

2021-12-17 18:24:32 +08:00
import 'dart:async';
import 'package:angel3_framework/angel3_framework.dart';
import 'orm.dart' as orm;
Future configureServer(Angel app) async {
// Include any plugins you have made here.
await app.configure(orm.configureServer);
}