10 lines
178 B
Dart
10 lines
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;
|
||
|
}
|