ac32034910
update log server to prevent delays or missed information
13 lines
301 B
C#
13 lines
301 B
C#
using System.Threading.Tasks;
|
|
using RestEase;
|
|
|
|
namespace IW4MAdmin.Application.API.GameLogServer
|
|
{
|
|
[Header("User-Agent", "IW4MAdmin-RestEase")]
|
|
public interface IGameLogServer
|
|
{
|
|
[Get("log/{path}/{key}")]
|
|
Task<LogInfo> Log([Path] string path, [Path] string key);
|
|
}
|
|
}
|