mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 15:56:05 -07:00
12 lines
No EOL
257 B
C#
12 lines
No EOL
257 B
C#
using System.Threading.Tasks;
|
|
using Octokit;
|
|
using PlexRequests.Core.Models;
|
|
|
|
namespace PlexRequests.Core
|
|
{
|
|
public interface IStatusChecker
|
|
{
|
|
Task<StatusModel> GetStatus();
|
|
Task<Issue> ReportBug(string title, string body);
|
|
}
|
|
} |