export const canaries: Canary[] = []; export class Canary { public constructor( public name: string, public description: string, public url: string, public keyIdentifier: string, ) { canaries.push(this); } } new Canary( 'estrogen.zone, memdmp', 'This canary is responsible for services hosted around estrogen.zone and yuridick.gay', '/canaries/memdmp:estrogen.zone', 'memdmp', ); new Canary( 'kyun.host', 'This canary is responsible for the VPS provider "kyun.host"', // '/canaries/napatha:kyun.host', 'https://files.kyun.host/canary.txt', 'napatha', );