mirror of
https://github.com/rommapp/romm.git
synced 2026-06-28 14:56:01 +00:00
8 lines
248 B
Python
8 lines
248 B
Python
from config import LAUNCHBOX_BASE_PATH
|
|
from handler.filesystem.base_handler import FSHandler
|
|
|
|
|
|
class FSLaunchboxHandler(FSHandler):
|
|
def __init__(self) -> None:
|
|
super().__init__(base_path=LAUNCHBOX_BASE_PATH, tolerate_missing_base=True)
|