#!/usr/bin/env python3
import sys
from pathlib import Path

sys.path.append(str(Path(__file__).parent.parent))
from tekover.tekover import tekover_main_wrapper


if __name__ == "__main__":
    tekover_main_wrapper()
