初始提交
This commit is contained in:
24
bin/controller/AreaController.route.dart
Normal file
24
bin/controller/AreaController.route.dart
Normal file
@@ -0,0 +1,24 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
// **************************************************************************
|
||||
// RouteGenerator
|
||||
// **************************************************************************
|
||||
|
||||
part of 'AreaController.dart';
|
||||
|
||||
late var _callHandler;
|
||||
final Map<HttpMethod, List<List>> routes = {
|
||||
HttpMethod.GET: [
|
||||
[
|
||||
"/report/getInstantData",
|
||||
HttpResponseType.JSON,
|
||||
_callHandler.getInstantData,
|
||||
2,
|
||||
false
|
||||
]
|
||||
],
|
||||
HttpMethod.POST: [
|
||||
["/report/start", HttpResponseType.JSON, _callHandler.start, 1, false],
|
||||
["/report/end", HttpResponseType.JSON, _callHandler.end, 1, false]
|
||||
],
|
||||
};
|
||||
Reference in New Issue
Block a user