10 lines
123 B
Python
10 lines
123 B
Python
from typing import List
|
|
|
|
from pyhanko.cli import launch
|
|
|
|
__all__: List[str] = []
|
|
|
|
|
|
if __name__ == '__main__':
|
|
launch()
|