mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 23:42:07 +01:00
8 lines
231 B
Python
8 lines
231 B
Python
from handler.db_handler import DBHandler
|
|
from handler.igdb_handler import IGDBHandler
|
|
from handler.sgdb_handler import SGDBHandler
|
|
|
|
igdbh: IGDBHandler = IGDBHandler()
|
|
sgdbh: SGDBHandler = SGDBHandler()
|
|
dbh: DBHandler = DBHandler()
|