mirror of
https://github.com/hacs/default.git
synced 2025-08-11 14:37:42 +00:00
14 lines
231 B
Python
14 lines
231 B
Python
import json
|
|
import os
|
|
from glob import glob
|
|
from scripts.helpers.manifest import get_manifest
|
|
|
|
|
|
def get_domain():
|
|
manifest = get_manifest()
|
|
return manifest.get("domain")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print(get_domain())
|