├── .env ├── .github ├── dependabot.yml └── workflows │ ├── lint.yml │ ├── pr-validation.yml │ ├── security.yml │ └── test.yml ├── .gitignore ├── README.md ├── chi ├── README.md └── chi.go ├── echo ├── README.md └── echo.go ├── errors.go ├── fiber ├── README.md └── fiber.go ├── gin ├── README.md └── gin.go ├── go.mod ├── go.sum ├── gorilla ├── README.md ├── gorilla.go └── gorilla_test.go ├── native ├── README.md └── native.go ├── outgoing.go └── sdk.go /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/.env -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/pr-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/.github/workflows/pr-validation.yml -------------------------------------------------------------------------------- /.github/workflows/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/.github/workflows/security.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | main 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/README.md -------------------------------------------------------------------------------- /chi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/chi/README.md -------------------------------------------------------------------------------- /chi/chi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/chi/chi.go -------------------------------------------------------------------------------- /echo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/echo/README.md -------------------------------------------------------------------------------- /echo/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/echo/echo.go -------------------------------------------------------------------------------- /errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/errors.go -------------------------------------------------------------------------------- /fiber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/fiber/README.md -------------------------------------------------------------------------------- /fiber/fiber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/fiber/fiber.go -------------------------------------------------------------------------------- /gin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/gin/README.md -------------------------------------------------------------------------------- /gin/gin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/gin/gin.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/go.sum -------------------------------------------------------------------------------- /gorilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/gorilla/README.md -------------------------------------------------------------------------------- /gorilla/gorilla.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/gorilla/gorilla.go -------------------------------------------------------------------------------- /gorilla/gorilla_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/gorilla/gorilla_test.go -------------------------------------------------------------------------------- /native/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/native/README.md -------------------------------------------------------------------------------- /native/native.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/native/native.go -------------------------------------------------------------------------------- /outgoing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/outgoing.go -------------------------------------------------------------------------------- /sdk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoscope-tech/monoscope-go/HEAD/sdk.go --------------------------------------------------------------------------------