Initial backend draft

This commit is contained in:
Fishandchips321 2025-12-22 18:45:15 +00:00
parent b6293beeec
commit 84ad96d628
18 changed files with 148 additions and 0 deletions

View file

@ -0,0 +1,8 @@
using JellyGlass.Models;
namespace JellyGlass.Repositories;
public interface IServerRepository
{
public Task<Server[]> GetServers();
}