├── .github └── workflows │ └── static-release.yml ├── LICENSE ├── README.md ├── aes.go ├── ezuri.go ├── go.mod ├── stub └── main.go └── utils.go /.github/workflows/static-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitmz/ezuri/HEAD/.github/workflows/static-release.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitmz/ezuri/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitmz/ezuri/HEAD/README.md -------------------------------------------------------------------------------- /aes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitmz/ezuri/HEAD/aes.go -------------------------------------------------------------------------------- /ezuri.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitmz/ezuri/HEAD/ezuri.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/guitmz/ezuri 2 | 3 | go 1.23.0 4 | -------------------------------------------------------------------------------- /stub/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitmz/ezuri/HEAD/stub/main.go -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guitmz/ezuri/HEAD/utils.go --------------------------------------------------------------------------------