platform/test/common.dart

10 lines
178 B
Dart
Raw Normal View History

2016-11-23 22:03:06 +00:00
import 'package:angel_framework/angel_framework.dart';
Angel testApp() {
final app = new Angel();
app.get('/hello', 'world');
app.get('/foo/bar', 'baz');
return app;
}