28 lines
686 B
TypeScript
28 lines
686 B
TypeScript
import { DescriptorOnlyIntegration } from '../../core/classes.descriptoronlyintegration.js';
|
|
|
|
export class HomeAssistantWeatherflowIntegration extends DescriptorOnlyIntegration {
|
|
constructor() {
|
|
super({
|
|
domain: "weatherflow",
|
|
displayName: "WeatherFlow",
|
|
status: 'descriptor-only',
|
|
metadata: {
|
|
"source": "home-assistant/core",
|
|
"upstreamPath": "homeassistant/components/weatherflow",
|
|
"upstreamDomain": "weatherflow",
|
|
"integrationType": "hub",
|
|
"iotClass": "local_push",
|
|
"requirements": [
|
|
"pyweatherflowudp==1.5.2"
|
|
],
|
|
"dependencies": [],
|
|
"afterDependencies": [],
|
|
"codeowners": [
|
|
"@natekspencer",
|
|
"@jeeftor"
|
|
]
|
|
},
|
|
});
|
|
}
|
|
}
|