mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-04 15:39:43 +00:00
16 lines
253 B
Python
16 lines
253 B
Python
"""
|
|
author: deadc0de6 (https://github.com/deadc0de6)
|
|
Copyright (c) 2017, deadc0de6
|
|
"""
|
|
|
|
# pylint: disable=C0415
|
|
import sys
|
|
|
|
|
|
def main():
|
|
"""entry point"""
|
|
import dotdrop.dotdrop
|
|
if dotdrop.dotdrop.main():
|
|
sys.exit(0)
|
|
sys.exit(1)
|