mirror of
https://github.com/umbra2728/ctfd-mcp.git
synced 2026-02-07 22:08:12 +03:00
12 lines
131 B
Python
12 lines
131 B
Python
from __future__ import annotations
|
|
|
|
from server import run
|
|
|
|
|
|
def main() -> None:
|
|
run()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|