mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 21:03:17 -07:00
work on issues and imporving the api.
Also added the GroupMe Api project so we can later add this as another notification agent
This commit is contained in:
parent
8de5057fd3
commit
189cfcaf05
28 changed files with 392 additions and 38 deletions
13
src/Ombi.Api.GroupMe/IGroupMeApi.cs
Normal file
13
src/Ombi.Api.GroupMe/IGroupMeApi.cs
Normal file
|
@ -0,0 +1,13 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using Ombi.Api.GroupMe.Models;
|
||||
|
||||
namespace Ombi.Api.GroupMe
|
||||
{
|
||||
public interface IGroupMeApi
|
||||
{
|
||||
Task<GroupMeResponse<List<Groups>>> GetGroups(string token, CancellationToken cancellationToken);
|
||||
Task<GroupMeResponse<SendResponse>> Send(string message, string token, int groupId);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue