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