1
0
mirror of https://github.com/Ombi-app/Ombi.git synced 2025-03-12 04:35:27 -07:00
2018-03-23 11:29:38 +00:00

10 lines
216 B
C#

using System.Threading.Tasks;
using Ombi.Api.Mattermost.Models;
namespace Ombi.Api.Mattermost
{
public interface IMattermostApi
{
Task PushAsync(string webhook, MattermostMessage message);
}
}