├── .github ├── dependabot.yml └── workflows │ └── go.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README-CN.md ├── README.md ├── dara ├── array.go ├── array_test.go ├── core.go ├── core_test.go ├── date.go ├── date_test.go ├── error.go ├── file.go ├── file_test.go ├── form.go ├── form_test.go ├── json_parser.go ├── json_parser_test.go ├── map.go ├── map_test.go ├── math.go ├── math_test.go ├── model.go ├── model_test.go ├── retry.go ├── retry_test.go ├── stream.go ├── stream_test.go ├── trans.go ├── trans_test.go ├── url.go ├── url_test.go ├── xml.go └── xml_test.go ├── go.mod ├── go.sum ├── internal ├── darafile │ ├── Darafile │ └── main.dara └── darafilev2 │ ├── Darafile │ └── main.dara ├── tea ├── json_parser.go ├── json_parser_test.go ├── tea.go ├── tea_test.go ├── trans.go └── trans_test.go └── utils ├── assert.go ├── assert_test.go ├── logger.go ├── logger_test.go ├── progress.go └── progress_test.go /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/Makefile -------------------------------------------------------------------------------- /README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/README-CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/README.md -------------------------------------------------------------------------------- /dara/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/array.go -------------------------------------------------------------------------------- /dara/array_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/array_test.go -------------------------------------------------------------------------------- /dara/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/core.go -------------------------------------------------------------------------------- /dara/core_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/core_test.go -------------------------------------------------------------------------------- /dara/date.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/date.go -------------------------------------------------------------------------------- /dara/date_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/date_test.go -------------------------------------------------------------------------------- /dara/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/error.go -------------------------------------------------------------------------------- /dara/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/file.go -------------------------------------------------------------------------------- /dara/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/file_test.go -------------------------------------------------------------------------------- /dara/form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/form.go -------------------------------------------------------------------------------- /dara/form_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/form_test.go -------------------------------------------------------------------------------- /dara/json_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/json_parser.go -------------------------------------------------------------------------------- /dara/json_parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/json_parser_test.go -------------------------------------------------------------------------------- /dara/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/map.go -------------------------------------------------------------------------------- /dara/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/map_test.go -------------------------------------------------------------------------------- /dara/math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/math.go -------------------------------------------------------------------------------- /dara/math_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/math_test.go -------------------------------------------------------------------------------- /dara/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/model.go -------------------------------------------------------------------------------- /dara/model_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/model_test.go -------------------------------------------------------------------------------- /dara/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/retry.go -------------------------------------------------------------------------------- /dara/retry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/retry_test.go -------------------------------------------------------------------------------- /dara/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/stream.go -------------------------------------------------------------------------------- /dara/stream_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/stream_test.go -------------------------------------------------------------------------------- /dara/trans.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/trans.go -------------------------------------------------------------------------------- /dara/trans_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/trans_test.go -------------------------------------------------------------------------------- /dara/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/url.go -------------------------------------------------------------------------------- /dara/url_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/url_test.go -------------------------------------------------------------------------------- /dara/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/xml.go -------------------------------------------------------------------------------- /dara/xml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/dara/xml_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/go.sum -------------------------------------------------------------------------------- /internal/darafile/Darafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/internal/darafile/Darafile -------------------------------------------------------------------------------- /internal/darafile/main.dara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/internal/darafile/main.dara -------------------------------------------------------------------------------- /internal/darafilev2/Darafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/internal/darafilev2/Darafile -------------------------------------------------------------------------------- /internal/darafilev2/main.dara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/internal/darafilev2/main.dara -------------------------------------------------------------------------------- /tea/json_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/tea/json_parser.go -------------------------------------------------------------------------------- /tea/json_parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/tea/json_parser_test.go -------------------------------------------------------------------------------- /tea/tea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/tea/tea.go -------------------------------------------------------------------------------- /tea/tea_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/tea/tea_test.go -------------------------------------------------------------------------------- /tea/trans.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/tea/trans.go -------------------------------------------------------------------------------- /tea/trans_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/tea/trans_test.go -------------------------------------------------------------------------------- /utils/assert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/utils/assert.go -------------------------------------------------------------------------------- /utils/assert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/utils/assert_test.go -------------------------------------------------------------------------------- /utils/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/utils/logger.go -------------------------------------------------------------------------------- /utils/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/utils/logger_test.go -------------------------------------------------------------------------------- /utils/progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/utils/progress.go -------------------------------------------------------------------------------- /utils/progress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibabacloud-go/tea/HEAD/utils/progress_test.go --------------------------------------------------------------------------------