Still working?
This commit is contained in:
parent
00104b67ef
commit
6814229106
1 changed files with 5 additions and 3 deletions
|
@ -4,11 +4,13 @@ import 'package:angel_route/angel_route.dart';
|
|||
import 'package:http/http.dart' as http;
|
||||
import 'package:test/test.dart';
|
||||
|
||||
const List<Map<String, String>> people = const [
|
||||
const {'name': 'John Smith'}
|
||||
];
|
||||
|
||||
main() {
|
||||
http.Client client;
|
||||
final people = [
|
||||
{'name': 'John Smith'}
|
||||
];
|
||||
|
||||
final Router router = new Router(debug: true);
|
||||
HttpServer server;
|
||||
String url;
|
||||
|
|
Loading…
Reference in a new issue