fly %!s(int64=2) %!d(string=hai) anos
pai
achega
ed70e20339
Modificáronse 1 ficheiros con 24 adicións e 0 borrados
  1. 24 0
      src/InteractionCenter/LockService.cs

+ 24 - 0
src/InteractionCenter/LockService.cs

@@ -0,0 +1,24 @@
+using System.Collections.Concurrent;
+using System.Threading.Tasks;
+using WingInterfaceLibrary.Interface;
+using WingInterfaceLibrary.Request.Lock;
+using WingInterfaceLibrary.Result.Lock;
+using WingServerCommon.Service;
+using WingServerCommon.Utilities.Executors;
+
+namespace WingCloudServer.InteractionCenter
+{
+    public class LockService : JsonRpcService, ILockService
+    {
+        public async Task<ApplyLockResult> ApplyLockAsync(ApplyLockRequest request)
+        {
+            return null;
+        }
+
+        public async Task<ReleaseLockResult> ReleaseLockAsync(ReleaseLockRequest request)
+        {
+            return null;
+        }
+    }
+
+}