mirror of
https://github.com/th3r00t/pyShelf.git
synced 2026-04-28 01:59:35 -04:00
9 lines
232 B
Python
Executable File
Vendored
9 lines
232 B
Python
Executable File
Vendored
#!/usr/bin/env python3
|
|
import os
|
|
from src.backend.lib.storage import Storage
|
|
from src.backend.lib.config import Config
|
|
|
|
config = Config(os.path.split(os.path.realpath(__file__))[0])
|
|
storage = Storage(config)
|
|
storage.create_tables()
|