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