12 lines
236 B
Python
12 lines
236 B
Python
"""A collection of all Gwendolyn functions."""
|
|
|
|
__all__ = ["Games", "Money", "LookupFuncs", "StarWars"]
|
|
|
|
from .games import Money, Games
|
|
|
|
from .lookup import LookupFuncs
|
|
|
|
from .other import Other
|
|
|
|
from .star_wars_funcs import StarWars
|