Skip to content

Commit c27f9fb

Browse files
committed
fix(errors): add NETWORK exit code to resolve typecheck failure
The handler.ts uses ExitCode.NETWORK but NETWORK was not defined in the ExitCode enum, causing TypeScript error TS2339 during CI typecheck.
1 parent 98cd1cc commit c27f9fb

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/errors/codes.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ export const ExitCode = {
55
AUTH: 3,
66
QUOTA: 4,
77
TIMEOUT: 5,
8+
NETWORK: 6,
89
CONTENT_FILTER: 10,
910
} as const;
1011

0 commit comments

Comments
 (0)