Skip to content

Commit

Permalink
remove route annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
devoncarew committed Mar 4, 2025
1 parent bfb30da commit d3f4cc5
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions pkgs/dart_services/lib/src/common_server.dart
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,6 @@ class CommonServerApi {
}
}

@Route.post('$apiPrefix/suggestFix')
Future<Response> suggestFix(Request request, String apiVersion) async {
if (apiVersion != api3) return unhandledVersion(apiVersion);

Expand All @@ -309,7 +308,6 @@ class CommonServerApi {
);
}

@Route.post('$apiPrefix/generateCode')
Future<Response> generateCode(Request request, String apiVersion) async {
if (apiVersion != api3) return unhandledVersion(apiVersion);

Expand All @@ -327,7 +325,6 @@ class CommonServerApi {
);
}

@Route.post('$apiPrefix/updateCode')
Future<Response> updateCode(Request request, String apiVersion) async {
if (apiVersion != api3) return unhandledVersion(apiVersion);

Expand Down

0 comments on commit d3f4cc5

Please sign in to comment.