Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add PluginExt extension trait and FilterByOperationName plugin #1837

Merged
merged 6 commits into from
Oct 11, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add copyright header
Harry Barber committed Oct 11, 2022
commit d7e241f94c3a771cfcf168378d84efa0216c81a8
5 changes: 5 additions & 0 deletions rust-runtime/aws-smithy-http-server/src/plugin/filter.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/

use tower::util::Either;

use crate::operation::{Operation, OperationShape};
5 changes: 5 additions & 0 deletions rust-runtime/aws-smithy-http-server/src/plugin/identity.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/

use crate::operation::Operation;

use super::Plugin;
5 changes: 5 additions & 0 deletions rust-runtime/aws-smithy-http-server/src/plugin/stack.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/

use crate::operation::Operation;

use super::Plugin;