mirror of
https://github.com/kennethreitz/empartations.git
synced 2026-06-05 14:50:20 +00:00
9 lines
203 B
Python
9 lines
203 B
Python
from .system import System777
|
|
from . import database
|
|
from . import numbers
|
|
|
|
# Initialize the system
|
|
system = System777(
|
|
goddesses=database.goddesses, angels=database.angels, demons=database.demons
|
|
)
|