Files
integrations/ts/integrations/openweathermap/openweathermap.classes.integration.ts
T

30 lines
739 B
TypeScript

import { DescriptorOnlyIntegration } from '../../core/classes.descriptoronlyintegration.js';
export class HomeAssistantOpenweathermapIntegration extends DescriptorOnlyIntegration {
constructor() {
super({
domain: "openweathermap",
displayName: "OpenWeatherMap",
status: 'descriptor-only',
metadata: {
"source": "home-assistant/core",
"upstreamPath": "homeassistant/components/openweathermap",
"upstreamDomain": "openweathermap",
"integrationType": "service",
"iotClass": "cloud_polling",
"requirements": [
"pyopenweathermap==0.2.2"
],
"dependencies": [],
"afterDependencies": [],
"codeowners": [
"@fabaff",
"@freekode",
"@nzapponi",
"@wittypluck"
]
},
});
}
}