BililiveRecorder/BililiveRecorder.Web.Schemas/RecorderSchema.cs
2022-04-02 21:02:29 +08:00

17 lines
451 B
C#

using System;
using BililiveRecorder.Core;
using GraphQL.Types;
namespace BililiveRecorder.Web.Schemas
{
public class RecorderSchema : Schema
{
public RecorderSchema(IServiceProvider services, IRecorder recorder) : base(services)
{
this.Query = new RecorderQuery(recorder);
this.Mutation = new RecorderMutation(recorder);
//this.Subscription = new RecorderSubscription();
}
}
}