├── Makefile ├── README.md ├── awss3.go ├── awss3_test.go ├── databases └── schema.sql ├── docker-compose.yml ├── httpreq.go ├── httpreq_test.go ├── limiter.go ├── limiter_test.go ├── main.go ├── mysqlop.go ├── mysqlop_test.go └── testingo_test.go /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euclidr/testingo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euclidr/testingo/HEAD/README.md -------------------------------------------------------------------------------- /awss3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euclidr/testingo/HEAD/awss3.go -------------------------------------------------------------------------------- /awss3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euclidr/testingo/HEAD/awss3_test.go -------------------------------------------------------------------------------- /databases/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euclidr/testingo/HEAD/databases/schema.sql -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euclidr/testingo/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /httpreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euclidr/testingo/HEAD/httpreq.go -------------------------------------------------------------------------------- /httpreq_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euclidr/testingo/HEAD/httpreq_test.go -------------------------------------------------------------------------------- /limiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euclidr/testingo/HEAD/limiter.go -------------------------------------------------------------------------------- /limiter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euclidr/testingo/HEAD/limiter_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euclidr/testingo/HEAD/main.go -------------------------------------------------------------------------------- /mysqlop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euclidr/testingo/HEAD/mysqlop.go -------------------------------------------------------------------------------- /mysqlop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euclidr/testingo/HEAD/mysqlop_test.go -------------------------------------------------------------------------------- /testingo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euclidr/testingo/HEAD/testingo_test.go --------------------------------------------------------------------------------