├── .github └── workflows │ ├── pack.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md └── src ├── daycount_nbt └── __init__.py ├── docs ├── introduction-zh_cn.md └── introduction.md └── mcdreforged.plugin.json /.github/workflows/pack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3236/daycount-NBT/HEAD/.github/workflows/pack.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3236/daycount-NBT/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | .vscode 3 | config 4 | dist 5 | build* 6 | *.zip 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3236/daycount-NBT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3236/daycount-NBT/HEAD/README.md -------------------------------------------------------------------------------- /src/daycount_nbt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3236/daycount-NBT/HEAD/src/daycount_nbt/__init__.py -------------------------------------------------------------------------------- /src/docs/introduction-zh_cn.md: -------------------------------------------------------------------------------- 1 | 获取和输出服务器开服时间。 2 | 3 | 特色功能: 4 | - NBT 模式 5 | 6 | :warning: **务必在使用前阅读仓库中的 README!** -------------------------------------------------------------------------------- /src/docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3236/daycount-NBT/HEAD/src/docs/introduction.md -------------------------------------------------------------------------------- /src/mcdreforged.plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3236/daycount-NBT/HEAD/src/mcdreforged.plugin.json --------------------------------------------------------------------------------