8 lines
119 B
Python
8 lines
119 B
Python
|
"""
|
||
|
Celestial
|
||
|
"""
|
||
|
from .base import Language
|
||
|
from .names import Name, NobleName
|
||
|
|
||
|
__all__ = [Language, Name, NobleName]
|