Q2NSViz 0.1.0
Q2NS trace visualizer
Loading...
Searching...
No Matches
__main__.py
Go to the documentation of this file.
1# -----------------------------------------------------------------------------
2# Q2NSViz - Quantum Network Trace Visualizer
3# Copyright (c) 2026 QuantumInternet.it
4#
5# This program is released under the MIT License - see LICENSE for details.
6# -----------------------------------------------------------------------------
7
8"""Entry point for ``python -m q2nsviz``."""
9
10import sys
11
12from .cli import main
13
14if __name__ == "__main__":
15 sys.exit(main())