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