mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-11 22:51:00 -07:00
14 lines
260 B
TypeScript
14 lines
260 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
export const ExitCodes = {
|
|
SUCCESS: 0,
|
|
FATAL_AUTHENTICATION_ERROR: 41,
|
|
FATAL_INPUT_ERROR: 42,
|
|
FATAL_CONFIG_ERROR: 52,
|
|
FATAL_CANCELLATION_ERROR: 130,
|
|
} as const;
|