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
|
|
|
|
|
{
|
2019-07-24 20:15:07 -04:00
|
|
|
|
[Get("log/{path}/{key}")]
|
|
|
|
|
Task<LogInfo> Log([Path] string path, [Path] string key);
|
2018-09-06 14:25:58 -04:00
|
|
|
|
}
|
|
|
|
|
}
|