├── .github └── workflows │ ├── gitleaks.yaml │ └── release-build.yaml ├── Dockerfile ├── LICENSE ├── README.md ├── channel ├── __init__.py ├── dingding.py ├── feishu.py └── wechat.py ├── deployment.yaml ├── docker-compose.yaml ├── img ├── dingding.webp ├── feishu.webp └── wechat.webp ├── logger.py ├── main.py ├── poetry.lock └── pyproject.toml /.github/workflows/gitleaks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboysoulcn/myturtle/HEAD/.github/workflows/gitleaks.yaml -------------------------------------------------------------------------------- /.github/workflows/release-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboysoulcn/myturtle/HEAD/.github/workflows/release-build.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboysoulcn/myturtle/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboysoulcn/myturtle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboysoulcn/myturtle/HEAD/README.md -------------------------------------------------------------------------------- /channel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /channel/dingding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboysoulcn/myturtle/HEAD/channel/dingding.py -------------------------------------------------------------------------------- /channel/feishu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboysoulcn/myturtle/HEAD/channel/feishu.py -------------------------------------------------------------------------------- /channel/wechat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboysoulcn/myturtle/HEAD/channel/wechat.py -------------------------------------------------------------------------------- /deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboysoulcn/myturtle/HEAD/deployment.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboysoulcn/myturtle/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /img/dingding.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboysoulcn/myturtle/HEAD/img/dingding.webp -------------------------------------------------------------------------------- /img/feishu.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboysoulcn/myturtle/HEAD/img/feishu.webp -------------------------------------------------------------------------------- /img/wechat.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboysoulcn/myturtle/HEAD/img/wechat.webp -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboysoulcn/myturtle/HEAD/logger.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboysoulcn/myturtle/HEAD/main.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboysoulcn/myturtle/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboysoulcn/myturtle/HEAD/pyproject.toml --------------------------------------------------------------------------------