Yuzu b15666f20e
chore: use single quotes (#68)
* chore: single quote
2022-07-18 18:25:23 +00:00

7 lines
247 B
TypeScript

import { Shard, ShardSocketCloseCodes, ShardState } from './types.ts';
export async function shutdown(shard: Shard): Promise<void> {
shard.close(ShardSocketCloseCodes.Shutdown, 'Shard shutting down.');
shard.state = ShardState.Offline;
}