This repository has been archived on 2024-12-19. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2024-12-19/fabfile/__init__.py
2018-05-10 15:15:17 +01:00

15 lines
267 B
Python

"""
Fabric is a Python library for performing devops tasks. If you have Fabric installed (systemwide or via pip) you can
run commands like this:
$ fab code_quality
For a list of commands
"""
from fabfile.tasks import code_quality
__all__ = ["code_quality"]