27 lines
631 B
TypeScript
27 lines
631 B
TypeScript
import { DescriptorOnlyIntegration } from '../../core/classes.descriptoronlyintegration.js';
|
|
|
|
export class HomeAssistantWhoisIntegration extends DescriptorOnlyIntegration {
|
|
constructor() {
|
|
super({
|
|
domain: "whois",
|
|
displayName: "Whois",
|
|
status: 'descriptor-only',
|
|
metadata: {
|
|
"source": "home-assistant/core",
|
|
"upstreamPath": "homeassistant/components/whois",
|
|
"upstreamDomain": "whois",
|
|
"integrationType": "service",
|
|
"iotClass": "cloud_polling",
|
|
"requirements": [
|
|
"whois==0.9.27"
|
|
],
|
|
"dependencies": [],
|
|
"afterDependencies": [],
|
|
"codeowners": [
|
|
"@frenck"
|
|
]
|
|
},
|
|
});
|
|
}
|
|
}
|