mirror of
https://github.com/Fluffy-Bean/Lynxie.git
synced 2025-05-28 14:23:15 +00:00
7 lines
91 B
Python
7 lines
91 B
Python
from .hello import Hello
|
|
from .music import Music
|
|
|
|
__all__ = [
|
|
"Hello",
|
|
"Music",
|
|
]
|