IW4M-Admin/Application/API/GameLogServer/IGameLogServer.cs
2018-09-06 13:25:58 -05:00

13 lines
276 B
C#

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);
}
}