export interface ServiceHandle {
    name: string;
    tags: string[];
    address: string;
    port: number;
}
