platform/lib/angel.dart
regiostech e9875f6f20 :)
2016-04-28 21:22:53 -04:00

15 lines
No EOL
351 B
Dart

/// Your very own web application!
library angel;
import 'dart:async';
import 'package:angel_framework/angel_framework.dart';
import 'src/config/config.dart' show configureServer;
/// Creates and configures the server instance.
Future<Angel> createServer() async {
Angel app = new Angel();
await app.configure(configureServer);
return app;
}