9 lines
168 B
Python
9 lines
168 B
Python
#!/usr/bin/env python3
|
|
"""Sub2SOCKS Docker entry point — re-exports from main module."""
|
|
|
|
from main import main # noqa: F401
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|