Skip to content

Commit

Permalink
🗑️
Browse files Browse the repository at this point in the history
  • Loading branch information
hlaueriksson committed Dec 29, 2023
1 parent 4ccb8f4 commit 900b324
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion samples/CommandQuery.Sample.AWSLambda/Command.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Amazon.Lambda.Annotations.APIGateway;
using Amazon.Lambda.Annotations;
using Amazon.Lambda.Annotations.APIGateway;
using Amazon.Lambda.APIGatewayEvents;
using Amazon.Lambda.Core;
using CommandQuery.AWSLambda;
Expand Down
2 changes: 1 addition & 1 deletion samples/CommandQuery.Sample.AWSLambda/Query.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Amazon.Lambda.Annotations.APIGateway;
using Amazon.Lambda.Annotations;
using Amazon.Lambda.Annotations.APIGateway;
using Amazon.Lambda.APIGatewayEvents;
using Amazon.Lambda.Core;
using CommandQuery.AWSLambda;
Expand Down
8 changes: 4 additions & 4 deletions samples/CommandQuery.Sample.AWSLambda/Startup.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
using Amazon.Lambda.Annotations;
using Amazon.Lambda.Core;
using CommandQuery.AWSLambda;
using CommandQuery.Sample.Contracts.Commands;
using CommandQuery.Sample.Handlers.Commands;
using CommandQuery.Sample.Handlers;
using Microsoft.Extensions.DependencyInjection;
using CommandQuery.Sample.Contracts.Queries;
using CommandQuery.Sample.Handlers;
using CommandQuery.Sample.Handlers.Commands;
using CommandQuery.Sample.Handlers.Queries;
using CommandQuery.AWSLambda;
using Microsoft.Extensions.DependencyInjection;

[assembly: LambdaSerializer(typeof(Amazon.Lambda.Serialization.SystemTextJson.DefaultLambdaJsonSerializer))]

Expand Down

0 comments on commit 900b324

Please sign in to comment.