summary refs log tree commit diff
path: root/ModAS.Server/Services/PingTask.cs
blob: 99a8f4049a927ca4f382b19e29ed576db3e4b4c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
namespace ModAS.Server.Services;

public class PingTask : IHostedService, IDisposable {
    public Task StartAsync(CancellationToken cancellationToken) => throw new NotImplementedException();

    public Task StopAsync(CancellationToken cancellationToken) => throw new NotImplementedException();

    public void Dispose() => throw new NotImplementedException();
}