13 lines
276 B
C#
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);
|
|||
|
}
|
|||
|
}
|