using static CompServ.CompServConst; namespace CompServ.ClientLibrary; public class CompServHubClient(string server) : CompServClient(server, ApiPathHubRootForCheckAlive, AliveMessageHub) { public async Task RegisterWorker(int port) { } public async Task UnRegisterWorker(int port) { } public async Task GetWorker() { throw new NotImplementedException(); } }