├── .github ├── dependabot.yml └── workflows │ └── pr.yaml ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── auth ├── README.md ├── context.go ├── interceptor.go ├── interceptor_test.go ├── jwt.go └── jwt_test.go ├── bloxid ├── README.md ├── doc.go ├── extrinsicids.go ├── hashids.go ├── hashids_test.go ├── interface.go ├── rand.go ├── rand_test.go ├── randomids.go ├── schemer.go ├── utils.go ├── v0.go └── v0_test.go ├── cmode ├── README.md ├── cmode.go ├── cmode_example_test.go ├── cmode_test.go └── logger │ └── logger.go ├── errors ├── README.md ├── container.go ├── container_test.go ├── context.go ├── context_test.go ├── interceptor.go ├── interceptor_test.go ├── mapper.go ├── mapper_test.go └── mappers │ ├── pqerrors │ ├── pqerrors.go │ └── pqerrors_test.go │ └── validationerrors │ ├── interceptor.go │ ├── interceptor_test.go │ ├── validationerrors.go │ └── validationerrors_test.go ├── gateway ├── README.md ├── errors.go ├── errors_test.go ├── field_presence.go ├── field_presence_test.go ├── fields.go ├── fields_test.go ├── filter.go ├── gateway.go ├── gateway_test.go ├── header.go ├── header_test.go ├── internal │ ├── test.pb.go │ └── test.proto ├── middleware.go ├── middleware_test.go ├── operator.go ├── response.go ├── response_test.go ├── status.go └── status_test.go ├── go.mod ├── go.sum ├── gorm ├── README.md ├── collection_operators.go ├── collection_operators_test.go ├── converter.go ├── fieldmask.go ├── fieldmask_test.go ├── fields.go ├── fields_test.go ├── filtering.go ├── filtering_test.go ├── joins.go ├── joins_test.go ├── resource │ ├── README.md │ ├── example_test.go │ ├── resource.go │ └── resource_test.go ├── searching.go ├── testdata │ └── fake_migrations │ │ ├── 1_a.up.sql │ │ ├── 20_c │ │ ├── 3_b.up.sql │ │ └── README.md ├── transaction.go ├── transaction_test.go ├── utilities.go ├── utilities_test.go ├── v2 │ ├── README.md │ ├── go.mod │ ├── go.sum │ ├── transaction.go │ └── transaction_test.go ├── version.go └── version_test.go ├── health ├── README.md ├── dnsprobecheck.go ├── dnsprobecheck_test.go ├── handler.go ├── handler_context.go ├── handler_context_test.go ├── handler_test.go ├── httpgetcheck.go ├── httpgetcheck_test.go └── types.go ├── integration ├── README.md ├── exec.go ├── grpc.go ├── grpc_test.go ├── http.go ├── http_test.go ├── jwt.go ├── jwt_test.go ├── network.go ├── network_test.go ├── postgres.go └── postgres_test.go ├── logging ├── README.md ├── annotator.go ├── gateway_interceptor.go ├── interceptor.go ├── interceptor_test.go ├── log.go ├── log_test.go ├── logging_test.go └── mocks │ └── server_stream.go ├── mocks └── transport │ └── transport.go ├── query ├── README.md ├── collection_operators.pb.go ├── collection_operators.proto ├── fields.go ├── fields_test.go ├── filtering.go ├── filtering_lexer.go ├── filtering_lexer_test.go ├── filtering_parser.go ├── filtering_parser_test.go ├── filtering_test.go ├── page_token.go ├── page_token_test.go ├── pagination.go ├── pagination_test.go ├── searching.go ├── sorting.go └── sorting_test.go ├── requestid ├── README.md ├── interceptor.go ├── interceptor_test.go └── requestid.go ├── requestinfo ├── README.md ├── erros.go ├── metadata_annotator.go ├── metadata_annotator_test.go ├── requestinfo.go ├── runtime.go └── runtime_test.go ├── rpc ├── README.md ├── errdetails │ ├── README.md │ ├── error_details.go │ ├── error_details.pb.go │ ├── error_details.proto │ └── error_details_test.go ├── errfields │ ├── README.md │ ├── error_fields.go │ ├── error_fields.pb.go │ ├── error_fields.proto │ └── error_fields_test.go └── resource │ ├── README.md │ ├── json_test.go │ ├── jsonpb.go │ ├── jsonpb_test.go │ ├── nil.go │ ├── nil_test.go │ ├── resource.pb.go │ ├── resource.proto │ ├── string.go │ └── string_test.go ├── server ├── README.md ├── flag.go ├── server.go ├── server_example_test.go ├── server_test.go ├── testdata │ ├── file.go │ ├── test.pb.go │ ├── test.pb.gw.go │ ├── test.pb.impl.go │ ├── test.proto │ └── test_grpc.pb.go ├── tls.go └── tls_test.go ├── servertest └── servertest.go ├── tools └── debugging │ ├── Dockerfile │ ├── README.md │ └── find-process ├── tracing ├── annotator.go ├── annotator_test.go ├── exporter.go ├── grpc.go ├── grpc_test.go ├── http.go ├── http_test.go ├── span.go └── util.go └── util ├── camel.go ├── snake.go └── snake_test.go /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/.github/workflows/pr.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/auth/README.md -------------------------------------------------------------------------------- /auth/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/auth/context.go -------------------------------------------------------------------------------- /auth/interceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/auth/interceptor.go -------------------------------------------------------------------------------- /auth/interceptor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/auth/interceptor_test.go -------------------------------------------------------------------------------- /auth/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/auth/jwt.go -------------------------------------------------------------------------------- /auth/jwt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/auth/jwt_test.go -------------------------------------------------------------------------------- /bloxid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/bloxid/README.md -------------------------------------------------------------------------------- /bloxid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/bloxid/doc.go -------------------------------------------------------------------------------- /bloxid/extrinsicids.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/bloxid/extrinsicids.go -------------------------------------------------------------------------------- /bloxid/hashids.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/bloxid/hashids.go -------------------------------------------------------------------------------- /bloxid/hashids_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/bloxid/hashids_test.go -------------------------------------------------------------------------------- /bloxid/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/bloxid/interface.go -------------------------------------------------------------------------------- /bloxid/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/bloxid/rand.go -------------------------------------------------------------------------------- /bloxid/rand_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/bloxid/rand_test.go -------------------------------------------------------------------------------- /bloxid/randomids.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/bloxid/randomids.go -------------------------------------------------------------------------------- /bloxid/schemer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/bloxid/schemer.go -------------------------------------------------------------------------------- /bloxid/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/bloxid/utils.go -------------------------------------------------------------------------------- /bloxid/v0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/bloxid/v0.go -------------------------------------------------------------------------------- /bloxid/v0_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/bloxid/v0_test.go -------------------------------------------------------------------------------- /cmode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/cmode/README.md -------------------------------------------------------------------------------- /cmode/cmode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/cmode/cmode.go -------------------------------------------------------------------------------- /cmode/cmode_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/cmode/cmode_example_test.go -------------------------------------------------------------------------------- /cmode/cmode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/cmode/cmode_test.go -------------------------------------------------------------------------------- /cmode/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/cmode/logger/logger.go -------------------------------------------------------------------------------- /errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/errors/README.md -------------------------------------------------------------------------------- /errors/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/errors/container.go -------------------------------------------------------------------------------- /errors/container_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/errors/container_test.go -------------------------------------------------------------------------------- /errors/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/errors/context.go -------------------------------------------------------------------------------- /errors/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/errors/context_test.go -------------------------------------------------------------------------------- /errors/interceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/errors/interceptor.go -------------------------------------------------------------------------------- /errors/interceptor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/errors/interceptor_test.go -------------------------------------------------------------------------------- /errors/mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/errors/mapper.go -------------------------------------------------------------------------------- /errors/mapper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/errors/mapper_test.go -------------------------------------------------------------------------------- /errors/mappers/pqerrors/pqerrors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/errors/mappers/pqerrors/pqerrors.go -------------------------------------------------------------------------------- /errors/mappers/pqerrors/pqerrors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/errors/mappers/pqerrors/pqerrors_test.go -------------------------------------------------------------------------------- /errors/mappers/validationerrors/interceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/errors/mappers/validationerrors/interceptor.go -------------------------------------------------------------------------------- /errors/mappers/validationerrors/interceptor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/errors/mappers/validationerrors/interceptor_test.go -------------------------------------------------------------------------------- /errors/mappers/validationerrors/validationerrors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/errors/mappers/validationerrors/validationerrors.go -------------------------------------------------------------------------------- /errors/mappers/validationerrors/validationerrors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/errors/mappers/validationerrors/validationerrors_test.go -------------------------------------------------------------------------------- /gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gateway/README.md -------------------------------------------------------------------------------- /gateway/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gateway/errors.go -------------------------------------------------------------------------------- /gateway/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gateway/errors_test.go -------------------------------------------------------------------------------- /gateway/field_presence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gateway/field_presence.go -------------------------------------------------------------------------------- /gateway/field_presence_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gateway/field_presence_test.go -------------------------------------------------------------------------------- /gateway/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gateway/fields.go -------------------------------------------------------------------------------- /gateway/fields_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gateway/fields_test.go -------------------------------------------------------------------------------- /gateway/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gateway/filter.go -------------------------------------------------------------------------------- /gateway/gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gateway/gateway.go -------------------------------------------------------------------------------- /gateway/gateway_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gateway/gateway_test.go -------------------------------------------------------------------------------- /gateway/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gateway/header.go -------------------------------------------------------------------------------- /gateway/header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gateway/header_test.go -------------------------------------------------------------------------------- /gateway/internal/test.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gateway/internal/test.pb.go -------------------------------------------------------------------------------- /gateway/internal/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gateway/internal/test.proto -------------------------------------------------------------------------------- /gateway/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gateway/middleware.go -------------------------------------------------------------------------------- /gateway/middleware_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gateway/middleware_test.go -------------------------------------------------------------------------------- /gateway/operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gateway/operator.go -------------------------------------------------------------------------------- /gateway/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gateway/response.go -------------------------------------------------------------------------------- /gateway/response_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gateway/response_test.go -------------------------------------------------------------------------------- /gateway/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gateway/status.go -------------------------------------------------------------------------------- /gateway/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gateway/status_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/go.sum -------------------------------------------------------------------------------- /gorm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/README.md -------------------------------------------------------------------------------- /gorm/collection_operators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/collection_operators.go -------------------------------------------------------------------------------- /gorm/collection_operators_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/collection_operators_test.go -------------------------------------------------------------------------------- /gorm/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/converter.go -------------------------------------------------------------------------------- /gorm/fieldmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/fieldmask.go -------------------------------------------------------------------------------- /gorm/fieldmask_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/fieldmask_test.go -------------------------------------------------------------------------------- /gorm/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/fields.go -------------------------------------------------------------------------------- /gorm/fields_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/fields_test.go -------------------------------------------------------------------------------- /gorm/filtering.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/filtering.go -------------------------------------------------------------------------------- /gorm/filtering_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/filtering_test.go -------------------------------------------------------------------------------- /gorm/joins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/joins.go -------------------------------------------------------------------------------- /gorm/joins_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/joins_test.go -------------------------------------------------------------------------------- /gorm/resource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/resource/README.md -------------------------------------------------------------------------------- /gorm/resource/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/resource/example_test.go -------------------------------------------------------------------------------- /gorm/resource/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/resource/resource.go -------------------------------------------------------------------------------- /gorm/resource/resource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/resource/resource_test.go -------------------------------------------------------------------------------- /gorm/searching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/searching.go -------------------------------------------------------------------------------- /gorm/testdata/fake_migrations/1_a.up.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gorm/testdata/fake_migrations/20_c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gorm/testdata/fake_migrations/3_b.up.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gorm/testdata/fake_migrations/README.md: -------------------------------------------------------------------------------- 1 | Just some fake migration files for test purposes 2 | -------------------------------------------------------------------------------- /gorm/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/transaction.go -------------------------------------------------------------------------------- /gorm/transaction_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/transaction_test.go -------------------------------------------------------------------------------- /gorm/utilities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/utilities.go -------------------------------------------------------------------------------- /gorm/utilities_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/utilities_test.go -------------------------------------------------------------------------------- /gorm/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/v2/README.md -------------------------------------------------------------------------------- /gorm/v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/v2/go.mod -------------------------------------------------------------------------------- /gorm/v2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/v2/go.sum -------------------------------------------------------------------------------- /gorm/v2/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/v2/transaction.go -------------------------------------------------------------------------------- /gorm/v2/transaction_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/v2/transaction_test.go -------------------------------------------------------------------------------- /gorm/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/version.go -------------------------------------------------------------------------------- /gorm/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/gorm/version_test.go -------------------------------------------------------------------------------- /health/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/health/README.md -------------------------------------------------------------------------------- /health/dnsprobecheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/health/dnsprobecheck.go -------------------------------------------------------------------------------- /health/dnsprobecheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/health/dnsprobecheck_test.go -------------------------------------------------------------------------------- /health/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/health/handler.go -------------------------------------------------------------------------------- /health/handler_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/health/handler_context.go -------------------------------------------------------------------------------- /health/handler_context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/health/handler_context_test.go -------------------------------------------------------------------------------- /health/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/health/handler_test.go -------------------------------------------------------------------------------- /health/httpgetcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/health/httpgetcheck.go -------------------------------------------------------------------------------- /health/httpgetcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/health/httpgetcheck_test.go -------------------------------------------------------------------------------- /health/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/health/types.go -------------------------------------------------------------------------------- /integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/integration/README.md -------------------------------------------------------------------------------- /integration/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/integration/exec.go -------------------------------------------------------------------------------- /integration/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/integration/grpc.go -------------------------------------------------------------------------------- /integration/grpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/integration/grpc_test.go -------------------------------------------------------------------------------- /integration/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/integration/http.go -------------------------------------------------------------------------------- /integration/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/integration/http_test.go -------------------------------------------------------------------------------- /integration/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/integration/jwt.go -------------------------------------------------------------------------------- /integration/jwt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/integration/jwt_test.go -------------------------------------------------------------------------------- /integration/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/integration/network.go -------------------------------------------------------------------------------- /integration/network_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/integration/network_test.go -------------------------------------------------------------------------------- /integration/postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/integration/postgres.go -------------------------------------------------------------------------------- /integration/postgres_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/integration/postgres_test.go -------------------------------------------------------------------------------- /logging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/logging/README.md -------------------------------------------------------------------------------- /logging/annotator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/logging/annotator.go -------------------------------------------------------------------------------- /logging/gateway_interceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/logging/gateway_interceptor.go -------------------------------------------------------------------------------- /logging/interceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/logging/interceptor.go -------------------------------------------------------------------------------- /logging/interceptor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/logging/interceptor_test.go -------------------------------------------------------------------------------- /logging/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/logging/log.go -------------------------------------------------------------------------------- /logging/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/logging/log_test.go -------------------------------------------------------------------------------- /logging/logging_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/logging/logging_test.go -------------------------------------------------------------------------------- /logging/mocks/server_stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/logging/mocks/server_stream.go -------------------------------------------------------------------------------- /mocks/transport/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/mocks/transport/transport.go -------------------------------------------------------------------------------- /query/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/query/README.md -------------------------------------------------------------------------------- /query/collection_operators.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/query/collection_operators.pb.go -------------------------------------------------------------------------------- /query/collection_operators.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/query/collection_operators.proto -------------------------------------------------------------------------------- /query/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/query/fields.go -------------------------------------------------------------------------------- /query/fields_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/query/fields_test.go -------------------------------------------------------------------------------- /query/filtering.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/query/filtering.go -------------------------------------------------------------------------------- /query/filtering_lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/query/filtering_lexer.go -------------------------------------------------------------------------------- /query/filtering_lexer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/query/filtering_lexer_test.go -------------------------------------------------------------------------------- /query/filtering_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/query/filtering_parser.go -------------------------------------------------------------------------------- /query/filtering_parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/query/filtering_parser_test.go -------------------------------------------------------------------------------- /query/filtering_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/query/filtering_test.go -------------------------------------------------------------------------------- /query/page_token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/query/page_token.go -------------------------------------------------------------------------------- /query/page_token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/query/page_token_test.go -------------------------------------------------------------------------------- /query/pagination.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/query/pagination.go -------------------------------------------------------------------------------- /query/pagination_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/query/pagination_test.go -------------------------------------------------------------------------------- /query/searching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/query/searching.go -------------------------------------------------------------------------------- /query/sorting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/query/sorting.go -------------------------------------------------------------------------------- /query/sorting_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/query/sorting_test.go -------------------------------------------------------------------------------- /requestid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/requestid/README.md -------------------------------------------------------------------------------- /requestid/interceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/requestid/interceptor.go -------------------------------------------------------------------------------- /requestid/interceptor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/requestid/interceptor_test.go -------------------------------------------------------------------------------- /requestid/requestid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/requestid/requestid.go -------------------------------------------------------------------------------- /requestinfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/requestinfo/README.md -------------------------------------------------------------------------------- /requestinfo/erros.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/requestinfo/erros.go -------------------------------------------------------------------------------- /requestinfo/metadata_annotator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/requestinfo/metadata_annotator.go -------------------------------------------------------------------------------- /requestinfo/metadata_annotator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/requestinfo/metadata_annotator_test.go -------------------------------------------------------------------------------- /requestinfo/requestinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/requestinfo/requestinfo.go -------------------------------------------------------------------------------- /requestinfo/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/requestinfo/runtime.go -------------------------------------------------------------------------------- /requestinfo/runtime_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/requestinfo/runtime_test.go -------------------------------------------------------------------------------- /rpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/rpc/README.md -------------------------------------------------------------------------------- /rpc/errdetails/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/rpc/errdetails/README.md -------------------------------------------------------------------------------- /rpc/errdetails/error_details.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/rpc/errdetails/error_details.go -------------------------------------------------------------------------------- /rpc/errdetails/error_details.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/rpc/errdetails/error_details.pb.go -------------------------------------------------------------------------------- /rpc/errdetails/error_details.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/rpc/errdetails/error_details.proto -------------------------------------------------------------------------------- /rpc/errdetails/error_details_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/rpc/errdetails/error_details_test.go -------------------------------------------------------------------------------- /rpc/errfields/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/rpc/errfields/README.md -------------------------------------------------------------------------------- /rpc/errfields/error_fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/rpc/errfields/error_fields.go -------------------------------------------------------------------------------- /rpc/errfields/error_fields.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/rpc/errfields/error_fields.pb.go -------------------------------------------------------------------------------- /rpc/errfields/error_fields.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/rpc/errfields/error_fields.proto -------------------------------------------------------------------------------- /rpc/errfields/error_fields_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/rpc/errfields/error_fields_test.go -------------------------------------------------------------------------------- /rpc/resource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/rpc/resource/README.md -------------------------------------------------------------------------------- /rpc/resource/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/rpc/resource/json_test.go -------------------------------------------------------------------------------- /rpc/resource/jsonpb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/rpc/resource/jsonpb.go -------------------------------------------------------------------------------- /rpc/resource/jsonpb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/rpc/resource/jsonpb_test.go -------------------------------------------------------------------------------- /rpc/resource/nil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/rpc/resource/nil.go -------------------------------------------------------------------------------- /rpc/resource/nil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/rpc/resource/nil_test.go -------------------------------------------------------------------------------- /rpc/resource/resource.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/rpc/resource/resource.pb.go -------------------------------------------------------------------------------- /rpc/resource/resource.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/rpc/resource/resource.proto -------------------------------------------------------------------------------- /rpc/resource/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/rpc/resource/string.go -------------------------------------------------------------------------------- /rpc/resource/string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/rpc/resource/string_test.go -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/server/README.md -------------------------------------------------------------------------------- /server/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/server/flag.go -------------------------------------------------------------------------------- /server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/server/server.go -------------------------------------------------------------------------------- /server/server_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/server/server_example_test.go -------------------------------------------------------------------------------- /server/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/server/server_test.go -------------------------------------------------------------------------------- /server/testdata/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/server/testdata/file.go -------------------------------------------------------------------------------- /server/testdata/test.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/server/testdata/test.pb.go -------------------------------------------------------------------------------- /server/testdata/test.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/server/testdata/test.pb.gw.go -------------------------------------------------------------------------------- /server/testdata/test.pb.impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/server/testdata/test.pb.impl.go -------------------------------------------------------------------------------- /server/testdata/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/server/testdata/test.proto -------------------------------------------------------------------------------- /server/testdata/test_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/server/testdata/test_grpc.pb.go -------------------------------------------------------------------------------- /server/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/server/tls.go -------------------------------------------------------------------------------- /server/tls_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/server/tls_test.go -------------------------------------------------------------------------------- /servertest/servertest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/servertest/servertest.go -------------------------------------------------------------------------------- /tools/debugging/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/tools/debugging/Dockerfile -------------------------------------------------------------------------------- /tools/debugging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/tools/debugging/README.md -------------------------------------------------------------------------------- /tools/debugging/find-process: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/tools/debugging/find-process -------------------------------------------------------------------------------- /tracing/annotator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/tracing/annotator.go -------------------------------------------------------------------------------- /tracing/annotator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/tracing/annotator_test.go -------------------------------------------------------------------------------- /tracing/exporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/tracing/exporter.go -------------------------------------------------------------------------------- /tracing/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/tracing/grpc.go -------------------------------------------------------------------------------- /tracing/grpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/tracing/grpc_test.go -------------------------------------------------------------------------------- /tracing/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/tracing/http.go -------------------------------------------------------------------------------- /tracing/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/tracing/http_test.go -------------------------------------------------------------------------------- /tracing/span.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/tracing/span.go -------------------------------------------------------------------------------- /tracing/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/tracing/util.go -------------------------------------------------------------------------------- /util/camel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/util/camel.go -------------------------------------------------------------------------------- /util/snake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/util/snake.go -------------------------------------------------------------------------------- /util/snake_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobloxopen/atlas-app-toolkit/HEAD/util/snake_test.go --------------------------------------------------------------------------------