added base diagnose, is not working, yet, still contains test objects

This commit is contained in:
moritz
2025-05-11 13:03:44 +02:00
parent 1b4d32eed3
commit 8ac2d20d8a
7 changed files with 59 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
using Moonlight.ApiServer.Models.Diagnose;
namespace Moonlight.ApiServer.Interfaces;
public interface IDiagnoseProvider
{
public Task<DiagnoseEntry> GetFiles();
}