You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
catcli/catcli/__init__.py

16 lines
226 B
Python

"""
author: deadc0de6 (https://github.com/deadc0de6)
Copyright (c) 2017, deadc0de6
"""
import sys
__version__ = '0.8.7'
def main():
import catcli.catcli
if catcli.catcli.main():
sys.exit(0)
sys.exit(1)