mirror of
https://github.com/cdr/code-server.git
synced 2025-12-07 08:52:16 +01:00
9 lines
99 B
TypeScript
9 lines
99 B
TypeScript
class Watchdog {
|
|
|
|
public start(): void {
|
|
// No action required.
|
|
}
|
|
|
|
}
|
|
|
|
export = new Watchdog();
|