export interface ISshKey {
    fingerprint: string;
    id: number;
    name: string;
    public_key: string;
}
