aboutsummaryrefslogtreecommitdiffstats
path: root/src/SyncEndpoint.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SyncEndpoint.cs')
-rw-r--r--src/SyncEndpoint.cs34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/SyncEndpoint.cs b/src/SyncEndpoint.cs
deleted file mode 100644
index fc82288..0000000
--- a/src/SyncEndpoint.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-namespace I2R.Endpoints;
-
-public static partial class SyncEndpoint<BaseEndpoint>
-{
- public static class Req<TRequest>
- {
- public abstract class Res<TResponse>
- {
- public abstract TResponse Handle(
- TRequest request
- );
- }
-
- public abstract class NoRes
- {
- public abstract void Handle(
- TRequest request
- );
- }
- }
-
- public static class NoReq
- {
- public abstract class Res<TResponse>
- {
- public abstract TResponse Handle();
- }
-
- public abstract class NoRes
- {
- public abstract void Handle();
- }
- }
-} \ No newline at end of file