21 lines
447 B
TypeScript
21 lines
447 B
TypeScript
/**
|
|
* Registry Module - Exporta Service Registry e tipos
|
|
* Arcadia Kernel
|
|
*/
|
|
|
|
export { ServiceRegistry } from './ServiceRegistry';
|
|
export type { ServiceRegistryOptions } from './ServiceRegistry';
|
|
export type {
|
|
DiscoverySource,
|
|
ServiceCategory,
|
|
ServiceCapability,
|
|
ServiceMetadata,
|
|
RegisteredService,
|
|
ServiceFilter,
|
|
RegistryEvent,
|
|
RegistryConfig,
|
|
DiscoveryProvider,
|
|
DockerLabelConfig,
|
|
RegistryApiResponse,
|
|
} from './types';
|