mirror of
https://github.com/aljazceru/goose.git
synced 2025-12-24 01:24:28 +01:00
21 lines
595 B
TypeScript
21 lines
595 B
TypeScript
// Export public API
|
|
export { DEFAULT_EXTENSION_TIMEOUT, nameToKey } from './utils';
|
|
|
|
// Export extension management functions
|
|
export {
|
|
activateExtension,
|
|
addToAgentOnStartup,
|
|
updateExtension,
|
|
toggleExtension,
|
|
deleteExtension,
|
|
} from './extension-manager';
|
|
|
|
// Export built-in extension functions
|
|
export { syncBuiltInExtensions, initializeBuiltInExtensions } from './built-in';
|
|
|
|
// Export deeplink handling
|
|
export { addExtensionFromDeepLink } from './deeplink';
|
|
|
|
// Export agent API functions
|
|
export { addToAgent as AddToAgent, removeFromAgent as RemoveFromAgent } from './agent-api';
|