Skip to content
This repository has been archived by the owner on Jul 15, 2024. It is now read-only.

Commit

Permalink
fix: update return type
Browse files Browse the repository at this point in the history
  • Loading branch information
KagChi committed Feb 12, 2024
1 parent 0665736 commit 67eb532
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Listeners/ResumeListener.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export class ReadyListener extends Listener {
});
}

public run(payload: { shardId: number; }): unknown {
public run(payload: { shardId: number; }): void {
this.logger.info(`Shard ${payload.shardId} has resumed`);
}
}

0 comments on commit 67eb532

Please sign in to comment.