#!/usr/bin/env python3

import sys
sys.path.insert(0, "src")

from ts_legalcheck.cli import cli

if __name__ == '__main__':
    cli()

