mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-05 12:03:49 +00:00
16 lines
231 B
Python
16 lines
231 B
Python
"""
|
|
author: deadc0de6 (https://github.com/deadc0de6)
|
|
Copyright (c) 2017, deadc0de6
|
|
"""
|
|
|
|
import sys
|
|
|
|
__version__ = '0.10.4'
|
|
|
|
|
|
def main():
|
|
import dotdrop.dotdrop
|
|
if dotdrop.dotdrop.main():
|
|
sys.exit(0)
|
|
sys.exit(1)
|