platform/test/common.dart
2016-11-23 17:03:06 -05:00

10 lines
No EOL
178 B
Dart

import 'package:angel_framework/angel_framework.dart';
Angel testApp() {
final app = new Angel();
app.get('/hello', 'world');
app.get('/foo/bar', 'baz');
return app;
}