#!/usr/bin/env python3

import sys
from pathlib import Path

sys.path.append(f'{Path(__file__).parent.parent}')

from asyncua.tools import uacall

if __name__ == "__main__":
    uacall()
