1
0
mirror of https://github.com/FreeOpcUa/opcua-asyncio synced 2025-10-29 17:07:18 +08:00
Files
opcua-asyncio/tools/uaserver
2024-10-16 11:23:51 +02:00

14 lines
260 B
Python
Executable File

#!/usr/bin/env python3
import logging
import sys
from pathlib import Path
logging.basicConfig(level=logging.DEBUG)
sys.path.append(f'{Path(__file__).parent.parent}')
from asyncua.tools import uaserver # noqa: E402
if __name__ == "__main__":
uaserver()