mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-11-06 17:51:36 +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 *
|