#!/usr/bin/env -S python3 -u

import sys
from pathlib import Path
from typing import TYPE_CHECKING

sys.path[0] = str(Path(__file__).parents[1] / 'clients')
sys.path.insert(1, str(Path(__file__).parents[1] / 'shared'))

if TYPE_CHECKING:
    from src.clients import alsapatch
    alsapatch.run()
else:
    import alsapatch
    alsapatch.run()