git @ Cat's Eye Technologies Falderal / master bin / falderal
master

Tree @master (Download .tar.gz)

falderal @masterraw · history · blame

#!/usr/bin/env python3

# SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
# For more information, please refer to <https://unlicense.org/>
# SPDX-License-Identifier: Unlicense

from os.path import realpath, dirname, join
import sys
from optparse import OptionParser

sys.path.insert(0, join(dirname(realpath(sys.argv[0])), '..', 'src'))

from falderal.driver import main


if __name__ == '__main__':
    sys.exit(main(sys.argv))