mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2025-12-18 00:20:13 +01:00
8 lines
149 B
Python
8 lines
149 B
Python
|
|
"""Initialize the file_setup package."""
|
||
|
|
|
||
|
|
from .setup import setup, regenerate_csv_by_color
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
'setup',
|
||
|
|
'regenerate_csv_by_color'
|
||
|
|
]
|