mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-15 09:42:56 -07:00
10 lines
No EOL
240 B
C#
10 lines
No EOL
240 B
C#
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);
|
|
}
|
|
} |