IW4M-Admin/Application/API/GameLogServer/IGameLogServer.cs

13 lines
276 B
C#
Raw Normal View History

2018-09-06 14:25:58 -04:00
using System.Threading.Tasks;
using RestEase;
namespace IW4MAdmin.Application.API.GameLogServer
{
[Header("User-Agent", "IW4MAdmin-RestEase")]
public interface IGameLogServer
{
[Get("log/{path}")]
Task<LogInfo> Log([Path] string path);
}
}