Linglun-Converter/utils/localize.py

28 lines
409 B
Python
Raw Normal View History

2024-01-08 00:10:17 +08:00
# -*- coding: utf-8 -*-
"""
伶伦转换器 本地化组件
Linglun Converter Language Localization Component
版权所有 © 2024 金羿
Copyright © 2024 EillesWan
2024-01-08 00:10:17 +08:00
开源相关声明请见 仓库根目录下的 License.md
Terms & Conditions: License.md in the root directory
2024-01-08 00:10:17 +08:00
"""
from .io import logger, Any
2024-01-08 00:10:17 +08:00
def _() -> str:
return ""
2024-05-02 00:29:21 +08:00
2024-01-08 00:10:17 +08:00
def main():
pass
2024-05-02 00:29:21 +08:00
2024-01-08 00:10:17 +08:00
if __name__ == "__main__":
main()