mirror of
https://github.com/rommapp/romm.git
synced 2026-06-29 15:25:46 +00:00
10 lines
315 B
Python
10 lines
315 B
Python
from .igdb_handler import IGDBBaseHandler
|
|
from .moby_handler import MobyGamesHandler
|
|
from .sgdb_handler import SGDBBaseHandler
|
|
from .ss_handler import SSBaseHandler
|
|
|
|
meta_igdb_handler = IGDBBaseHandler()
|
|
meta_moby_handler = MobyGamesHandler()
|
|
meta_ss_handler = SSBaseHandler()
|
|
meta_sgdb_handler = SGDBBaseHandler()
|