(address: string, status: 'online' | 'offline')
| 67 | } |
| 68 | |
| 69 | export function updateCustomServerStatus(address: string, status: 'online' | 'offline'): CustomServer[] { |
| 70 | return ModelManager.getInstance().updateCustomServerStatus(address, status); |
| 71 | } |
| 72 | |
| 73 | export async function checkCustomServer(address: string): Promise<ServerResponse> { |
| 74 | return ModelManager.getInstance().checkCustomServer(address); |
nothing calls this directly
no test coverage detected