mirror of
https://github.com/axiomatic-systems/Bento4.git
synced 2024-12-04 23:39:34 +00:00
13 lines
183 B
Python
13 lines
183 B
Python
"""
|
|
Tasks for Bento4
|
|
"""
|
|
|
|
from invoke import Collection
|
|
from . import docker
|
|
from . import test
|
|
|
|
# Add collections
|
|
ns = Collection()
|
|
ns.add_collection(test)
|
|
ns.add_collection(docker)
|