mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-08-18 03:15:45 +00:00
8 lines
162 B
Python
8 lines
162 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
VERSION = (0, 3)
|
|
__version__ = ".".join(map(str, VERSION[0:2])) + "".join(VERSION[2:])
|
|
__license__ = "BSD"
|
|
|
|
from pyfttt.sending import *
|