mirror of
https://github.com/mochabyte0x/CTFPacker
synced 2026-06-06 16:14:33 +00:00
9 lines
155 B
Python
9 lines
155 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
"""GUI entry point for CTFPacker."""
|
|
|
|
from gui.app import run_gui
|
|
|
|
if __name__ == "__main__":
|
|
run_gui()
|