forked from NoeFabris/opencode-antigravity-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
31 lines (29 loc) · 616 Bytes
/
Copy pathindex.ts
File metadata and controls
31 lines (29 loc) · 616 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**
* Configuration module for opencode-antigravity-auth plugin.
*
* @example
* ```typescript
* import { loadConfig, type AntigravityConfig } from "./config";
*
* const config = loadConfig(directory);
* if (config.session_recovery) {
* // Enable session recovery
* }
* ```
*/
export {
AntigravityConfigSchema,
SignatureCacheConfigSchema,
DEFAULT_CONFIG,
type AntigravityConfig,
type SignatureCacheConfig,
} from "./schema";
export {
loadConfig,
getUserConfigPath,
getProjectConfigPath,
getDefaultLogsDir,
configExists,
initRuntimeConfig,
getKeepThinking,
} from "./loader";