diff --git a/lib/codegen/codegen.dart b/lib/codegen/codegen.dart index b2ee47d9..f043ab0c 100644 --- a/lib/codegen/codegen.dart +++ b/lib/codegen/codegen.dart @@ -1,9 +1,9 @@ import 'package:apidash/models/models.dart' show RequestModel; import 'package:apidash/consts.dart'; -import 'dart/pkg_http.dart'; -import 'kotlin/pkg_okhttp.dart'; -import 'python/pkg_http_client.dart'; -import 'python/pkg_requests.dart'; +import 'dart/http.dart'; +import 'kotlin/okhttp.dart'; +import 'python/http_client.dart'; +import 'python/requests.dart'; import 'others/har.dart'; import 'others/curl.dart'; diff --git a/lib/codegen/dart/pkg_http.dart b/lib/codegen/dart/http.dart similarity index 100% rename from lib/codegen/dart/pkg_http.dart rename to lib/codegen/dart/http.dart diff --git a/lib/codegen/kotlin/pkg_okhttp.dart b/lib/codegen/kotlin/okhttp.dart similarity index 100% rename from lib/codegen/kotlin/pkg_okhttp.dart rename to lib/codegen/kotlin/okhttp.dart diff --git a/lib/codegen/python/pkg_http_client.dart b/lib/codegen/python/http_client.dart similarity index 100% rename from lib/codegen/python/pkg_http_client.dart rename to lib/codegen/python/http_client.dart diff --git a/lib/codegen/python/pkg_requests.dart b/lib/codegen/python/requests.dart similarity index 100% rename from lib/codegen/python/pkg_requests.dart rename to lib/codegen/python/requests.dart diff --git a/test/codegen/dart_http_codegen_test.dart b/test/codegen/dart_http_codegen_test.dart index 61e7f032..e384b628 100644 --- a/test/codegen/dart_http_codegen_test.dart +++ b/test/codegen/dart_http_codegen_test.dart @@ -1,4 +1,4 @@ -import 'package:apidash/codegen/dart/pkg_http.dart'; +import 'package:apidash/codegen/dart/http.dart'; import 'package:test/test.dart'; import '../request_models.dart'; diff --git a/test/codegen/kotlin_okhttp_codegen_test.dart b/test/codegen/kotlin_okhttp_codegen_test.dart index 1ebdc4b1..f2205a1b 100644 --- a/test/codegen/kotlin_okhttp_codegen_test.dart +++ b/test/codegen/kotlin_okhttp_codegen_test.dart @@ -1,4 +1,4 @@ -import 'package:apidash/codegen/kotlin/pkg_okhttp.dart'; +import 'package:apidash/codegen/kotlin/okhttp.dart'; import 'package:test/test.dart'; import '../request_models.dart'; diff --git a/test/codegen/python_http_client_codegen_test.dart b/test/codegen/python_http_client_codegen_test.dart index 13c6b27a..f95d265d 100644 --- a/test/codegen/python_http_client_codegen_test.dart +++ b/test/codegen/python_http_client_codegen_test.dart @@ -1,4 +1,4 @@ -import 'package:apidash/codegen/python/pkg_http_client.dart'; +import 'package:apidash/codegen/python/http_client.dart'; import '../request_models.dart'; import 'package:test/test.dart'; diff --git a/test/codegen/python_requests_codegen_test.dart b/test/codegen/python_requests_codegen_test.dart index 65e69d66..35a1579d 100644 --- a/test/codegen/python_requests_codegen_test.dart +++ b/test/codegen/python_requests_codegen_test.dart @@ -1,4 +1,4 @@ -import 'package:apidash/codegen/python/pkg_requests.dart'; +import 'package:apidash/codegen/python/requests.dart'; import '../request_models.dart'; import 'package:test/test.dart';