Skip to content

Commit

Permalink
Add delete handler
Browse files Browse the repository at this point in the history
  • Loading branch information
inputfalken committed Jul 11, 2024
1 parent f15dde3 commit f8a5484
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Dynatello

## What does it do?
A reflection free & typed solution to send requests towards dynamodb without having to manually maintain the low-level parts.
A reflection free & generic typed solution to send requests towards dynamodb without having to manually maintain the low-level parts.

## Features

Expand Down
10 changes: 10 additions & 0 deletions src/Dynatello/Handlers/DeleteRequestHandler.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
namespace Dynatello.Handlers;

internal sealed class DeleteREquestHandler<TArg, T> : IRequestHandler<TArg, T>
{
public Task<T> Send(TArg arg, CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
}

0 comments on commit f8a5484

Please sign in to comment.