10 lines
181 B
Python
10 lines
181 B
Python
|
"""German language resources"""
|
||
|
from pathlib import Path
|
||
|
|
||
|
_DIR = Path(__file__).parent
|
||
|
|
||
|
|
||
|
def get_lang_dir() -> Path:
|
||
|
"""Get directory with language resources"""
|
||
|
return _DIR
|