mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
17 lines
451 B
C#
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();
|
||
|
}
|
||
|
}
|
||
|
}
|