11 lines
163 B
Python
11 lines
163 B
Python
"""
|
|
Author: Uyanide pywang0608@foxmail.com
|
|
Date: 2026-04-06 08:19:54
|
|
Description: The entry point.
|
|
"""
|
|
|
|
from .cli import run
|
|
|
|
if __name__ == "__main__":
|
|
run()
|