mirror of
https://github.com/th3r00t/pyShelf.git
synced 2026-04-28 01:59:35 -04:00
14 lines
314 B
Python
Executable File
Vendored
14 lines
314 B
Python
Executable File
Vendored
#!/usr/bin/env python
|
|
|
|
import pathlib
|
|
import sys
|
|
|
|
from src.backend.lib.storage import Storage
|
|
from src.backend.pyShelf_ScanLibrary import execute_scan
|
|
|
|
PRG_PATH = pathlib.Path.cwd()
|
|
LIB_PATH = pathlib.Path.joinpath(PRG_PATH, "src", "backend", "lib")
|
|
sys.path.insert(0, PRG_PATH)
|
|
print("\n")
|
|
execute_scan(PRG_PATH)
|