mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-15 01:32:55 -07:00
12 lines
No EOL
273 B
C#
12 lines
No EOL
273 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Ombi.Api.Github.Models;
|
|
|
|
namespace Ombi.Api.Github
|
|
{
|
|
public interface IGithubApi
|
|
{
|
|
Task<List<CakeThemes>> GetCakeThemes();
|
|
Task<string> GetThemesRawContent(string url);
|
|
}
|
|
} |