10 lines
No EOL
287 B
C#
10 lines
No EOL
287 B
C#
using JellyGlass.Repositories;
|
|
|
|
namespace JellyGlass.Services;
|
|
|
|
public interface IClientService
|
|
{
|
|
public Task<JellyfinApiClient[]> GetJellyfinClients();
|
|
// public JellyfinApiClient GetClientForServer(string url);
|
|
public Task<JellyfinApiClient> GetClientForServerId(string serverId);
|
|
} |