16 lines
399 B
C#
16 lines
399 B
C#
using System.Text;
|
|
using Moonlight.ApiServer.Interfaces;
|
|
using Moonlight.ApiServer.Models.Diagnose;
|
|
|
|
namespace Moonlight.ApiServer.Implementations.Diagnose;
|
|
|
|
public class CoreDiagnoseProvider : IDiagnoseProvider
|
|
{
|
|
public async Task<DiagnoseEntry> GetFiles()
|
|
{
|
|
return new DiagnoseFile()
|
|
{
|
|
GetContent = () => Encoding.UTF8.GetBytes("hello world")
|
|
};
|
|
}
|
|
} |