!wip integrated with the layer#cake repo. Just need to do the UI

This commit is contained in:
tidusjar 2017-11-06 22:21:43 +00:00
parent c8f00c4e8a
commit b1d59452ef
10 changed files with 38 additions and 24 deletions

View file

@ -1,10 +1,11 @@
using System.Threading.Tasks;
using System.Collections.Generic;
using System.Threading.Tasks;
using Ombi.Api.Github.Models;
namespace Ombi.Api.Github
{
public interface IGithubApi
{
Task<CakeThemesContainer> GetCakeThemes();
Task<List<CakeThemes>> GetCakeThemes();
}
}