mirror of
https://github.com/TriM-Organization/Linglun-Converter.git
synced 2024-11-13 10:57:34 +08:00
28 lines
409 B
Python
28 lines
409 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
伶伦转换器 本地化组件
|
|
Linglun Converter Language Localization Component
|
|
|
|
版权所有 © 2024 金羿
|
|
Copyright © 2024 EillesWan
|
|
|
|
开源相关声明请见 仓库根目录下的 License.md
|
|
Terms & Conditions: License.md in the root directory
|
|
"""
|
|
|
|
|
|
from .io import logger, Any
|
|
|
|
|
|
def _() -> str:
|
|
return ""
|
|
|
|
|
|
def main():
|
|
pass
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|