2020-02-14 02:52:51 +00:00
|
|
|
"""Initialize repositories."""
|
2020-04-10 01:29:27 +00:00
|
|
|
from custom_components.hacs.repositories.theme import HacsTheme
|
|
|
|
from custom_components.hacs.repositories.integration import HacsIntegration
|
|
|
|
from custom_components.hacs.repositories.python_script import HacsPythonScript
|
|
|
|
from custom_components.hacs.repositories.appdaemon import HacsAppdaemon
|
|
|
|
from custom_components.hacs.repositories.netdaemon import HacsNetdaemon
|
|
|
|
from custom_components.hacs.repositories.plugin import HacsPlugin
|
|
|
|
|
|
|
|
RERPOSITORY_CLASSES = {
|
|
|
|
"theme": HacsTheme,
|
|
|
|
"integration": HacsIntegration,
|
|
|
|
"python_script": HacsPythonScript,
|
|
|
|
"appdaemon": HacsAppdaemon,
|
|
|
|
"netdaemon": HacsNetdaemon,
|
|
|
|
"plugin": HacsPlugin,
|
|
|
|
}
|