BililiveRecorder/BililiveRecorder.Web.Schemas/RecorderSchema.cs

17 lines
451 B
C#
Raw Normal View History

2021-05-30 19:16:20 +08:00
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();
}
}
}