git @ Cat's Eye Technologies Feedmark / master bin / feedmark
master

Tree @master (Download .tar.gz)

feedmark @masterraw · history · blame

#!/usr/bin/env python3

# SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
#
# SPDX-License-Identifier: CC0-1.0

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

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

from feedmark.main import main


if __name__ == '__main__':
    main(sys.argv[1:])