Mercurial > code > home > repos > homeauto
view service/announce/tasks.py @ 1581:137ba2d6d016 0.5.0
release 0.5.0
author | drewp@bigasterisk.com |
---|---|
date | Sun, 29 Aug 2021 13:36:08 -0700 |
parents | f70514b127d2 |
children |
line wrap: on
line source
from invoke import task, Collection import sys sys.path.append('/my/proj/release') from serv_tasks import serv_tasks ns = Collection() coll = Collection('announce') ns.add_collection(coll) serv_tasks(coll, 'serv.n3', 'announce') coll = Collection('tts') ns.add_collection(coll) serv_tasks(ns, 'serv.n3', 'tts_server')