From f8a54845b5c9e0cf683bb0ce5a65441c75fdd83d Mon Sep 17 00:00:00 2001 From: Robert Andersson Date: Thu, 11 Jul 2024 14:47:01 +0200 Subject: [PATCH] Add delete handler --- README.md | 2 +- src/Dynatello/Handlers/DeleteRequestHandler.cs | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 src/Dynatello/Handlers/DeleteRequestHandler.cs 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(); + } +} +