mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-03-12 04:35:27 -07:00
10 lines
216 B
C#
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);
|
|
}
|
|
} |