Skip to content

Commit 915e969

Browse files
committed
refactor(data): remove duplicate import comments
- Remove redundant comments on the same import line in both [id].dart and index.dart files - Standardize import comments for better readability and consistency
1 parent 02e12cb commit 915e969

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

routes/api/v1/data/[id].dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import 'package:dart_frog/dart_frog.dart';
2525
// Import RequestId from the middleware file where it's defined
2626
import 'package:ht_api/src/registry/model_registry.dart';
2727
import 'package:ht_data_repository/ht_data_repository.dart';
28-
import 'package:ht_http_client/ht_http_client.dart'; // Import exceptions
28+
// Import exceptions
2929
// Import models, SuccessApiResponse, ResponseMetadata
3030
import 'package:ht_shared/ht_shared.dart';
3131

routes/api/v1/data/index.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import 'package:dart_frog/dart_frog.dart';
2525
// Import RequestId from the middleware file where it's defined
2626
import 'package:ht_api/src/registry/model_registry.dart';
2727
import 'package:ht_data_repository/ht_data_repository.dart';
28-
import 'package:ht_http_client/ht_http_client.dart'; // Import exceptions
28+
// Import exceptions
2929
// Import models, SuccessApiResponse, PaginatedResponse, ResponseMetadata
3030
import 'package:ht_shared/ht_shared.dart';
3131

0 commit comments

Comments
 (0)