12 lines
210 B
Python
12 lines
210 B
Python
|
|
#!/usr/bin/env python3
|
||
|
|
"""
|
||
|
|
File System Browser - Entry point
|
||
|
|
Reads files and folders from a specified directory and displays them in a GUI
|
||
|
|
"""
|
||
|
|
|
||
|
|
from src.main import main
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
main()
|
||
|
|
|