This commit is contained in:
Jamie.Rees 2017-08-07 16:02:00 +01:00
commit d5477adc6b
24 changed files with 613 additions and 8 deletions

View file

@ -0,0 +1,10 @@
using System.Threading.Tasks;
using Ombi.Api.Slack.Models;
namespace Ombi.Api.Slack
{
public interface ISlackApi
{
Task<string> PushAsync(string team, string token, string service, SlackNotificationBody message);
}
}