├── .github └── workflows │ └── relese.yml ├── .gitignore ├── LICENSE ├── README.md ├── config.json ├── go.mod └── main.go /.github/workflows/relese.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangwt-cn/git-daily/HEAD/.github/workflows/relese.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangwt-cn/git-daily/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangwt-cn/git-daily/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangwt-cn/git-daily/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangwt-cn/git-daily/HEAD/config.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module git-daily 2 | 3 | go 1.21.4 4 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhangwt-cn/git-daily/HEAD/main.go --------------------------------------------------------------------------------