AobaService
use transactions Added gRPC
This commit is contained in:
13
AobaServer/Services/AobaRpcService.cs
Normal file
13
AobaServer/Services/AobaRpcService.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using AobaCore;
|
||||
|
||||
using Grpc.Core;
|
||||
|
||||
namespace AobaServer.Services;
|
||||
|
||||
public class AobaRpcService(AobaService aobaService) : AobaRPC.AobaRPCBase
|
||||
{
|
||||
public override Task<MediaModel> GetMedia(Id request, ServerCallContext context)
|
||||
{
|
||||
return base.GetMedia(request, context);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user