9 lines
167 B
Python
Executable File
9 lines
167 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""CLI wrapper for big file creation."""
|
|
|
|
from big_file_gen import create_main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(create_main())
|