diff options
author | Rory& <root@rory.gay> | 2023-12-31 12:00:40 +0100 |
---|---|---|
committer | Rory& <root@rory.gay> | 2023-12-31 12:00:40 +0100 |
commit | c5b72e6f002a637d542068be88d70936150c8818 (patch) | |
tree | c7d7a5c99329e88bce47b60b566b8398c0dd4a68 /ModAS.Server/Services/PingTask.cs | |
parent | Room query (diff) | |
download | ModAS-c5b72e6f002a637d542068be88d70936150c8818.tar.xz |
Add auth, start of commit script
Diffstat (limited to 'ModAS.Server/Services/PingTask.cs')
-rw-r--r-- | ModAS.Server/Services/PingTask.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ModAS.Server/Services/PingTask.cs b/ModAS.Server/Services/PingTask.cs new file mode 100644 index 0000000..99a8f40 --- /dev/null +++ b/ModAS.Server/Services/PingTask.cs @@ -0,0 +1,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(); +} \ No newline at end of file |