diff --git a/README.md b/README.md index 57b854c..8314d62 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/Dynatello/Handlers/DeleteRequestHandler.cs b/src/Dynatello/Handlers/DeleteRequestHandler.cs new file mode 100644 index 0000000..e7678aa --- /dev/null +++ b/src/Dynatello/Handlers/DeleteRequestHandler.cs @@ -0,0 +1,10 @@ +namespace Dynatello.Handlers; + +internal sealed class DeleteREquestHandler : IRequestHandler +{ + public Task Send(TArg arg, CancellationToken cancellationToken) + { + throw new NotImplementedException(); + } +} +