mirror of
https://github.com/rommapp/romm.git
synced 2026-06-30 07:45:52 +00:00
9 lines
291 B
Python
9 lines
291 B
Python
from handler.db_handler import DBHandler
|
|
from handler.igdb_handler import IGDBHandler
|
|
from handler.sgdb_handler import SGDBHandler
|
|
from config.config_loader import ConfigLoader
|
|
|
|
igdbh: IGDBHandler = IGDBHandler()
|
|
sgdbh: SGDBHandler = SGDBHandler()
|
|
dbh: DBHandler = DBHandler(ConfigLoader())
|