From 33c669b1e33e77b57d067a416a28428d81bf96af Mon Sep 17 00:00:00 2001 From: Patrick Stewart Date: Sun, 22 Sep 2024 21:53:07 -0700 Subject: [PATCH] update(angel3): rebranding angel3 framework --- packages/framework/lib/http2.dart | 2 +- packages/framework/lib/src/http/http.dart | 2 +- .../lib/src/http/{angel_http.dart => protevus_http.dart} | 0 .../lib/src/http2/{angel_http2.dart => protevus_http2.dart} | 0 packages/framework/test/response_header_test.dart | 2 +- 5 files changed, 3 insertions(+), 3 deletions(-) rename packages/framework/lib/src/http/{angel_http.dart => protevus_http.dart} (100%) rename packages/framework/lib/src/http2/{angel_http2.dart => protevus_http2.dart} (100%) diff --git a/packages/framework/lib/http2.dart b/packages/framework/lib/http2.dart index e21891f..7fd2aaf 100644 --- a/packages/framework/lib/http2.dart +++ b/packages/framework/lib/http2.dart @@ -1,3 +1,3 @@ -export 'src/http2/angel_http2.dart'; +export 'src/http2/protevus_http2.dart'; export 'src/http2/http2_request_context.dart'; export 'src/http2/http2_response_context.dart'; diff --git a/packages/framework/lib/src/http/http.dart b/packages/framework/lib/src/http/http.dart index d4ea40b..a764146 100644 --- a/packages/framework/lib/src/http/http.dart +++ b/packages/framework/lib/src/http/http.dart @@ -3,7 +3,7 @@ library angel_framework.http; import 'dart:async'; import 'dart:io'; -export 'angel_http.dart'; +export 'protevus_http.dart'; export 'http_request_context.dart'; export 'http_response_context.dart'; diff --git a/packages/framework/lib/src/http/angel_http.dart b/packages/framework/lib/src/http/protevus_http.dart similarity index 100% rename from packages/framework/lib/src/http/angel_http.dart rename to packages/framework/lib/src/http/protevus_http.dart diff --git a/packages/framework/lib/src/http2/angel_http2.dart b/packages/framework/lib/src/http2/protevus_http2.dart similarity index 100% rename from packages/framework/lib/src/http2/angel_http2.dart rename to packages/framework/lib/src/http2/protevus_http2.dart diff --git a/packages/framework/test/response_header_test.dart b/packages/framework/test/response_header_test.dart index 6d33a42..52f42af 100644 --- a/packages/framework/test/response_header_test.dart +++ b/packages/framework/test/response_header_test.dart @@ -2,7 +2,7 @@ import 'dart:io'; import 'package:platform_container/mirrors.dart'; import 'package:platform_framework/platform_framework.dart'; -import 'package:platform_framework/src/http/angel_http.dart'; +import 'package:platform_framework/src/http/protevus_http.dart'; import 'package:test/test.dart'; void main() {