├── .editorconfig ├── .envrc ├── .github ├── .editorconfig ├── dependabot.yaml └── workflows │ └── ci.yaml ├── .gitignore ├── .golangci.yaml ├── LICENSE ├── README.md ├── doc.go ├── flake.lock ├── flake.nix ├── go.mod ├── go.sum ├── handler.go ├── handler_test.go ├── resource.go └── resource_test.go /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-slog/otelslog/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-slog/otelslog/HEAD/.envrc -------------------------------------------------------------------------------- /.github/.editorconfig: -------------------------------------------------------------------------------- 1 | [{*.yaml,*.yml}] 2 | indent_size = 2 3 | -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-slog/otelslog/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-slog/otelslog/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-slog/otelslog/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-slog/otelslog/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-slog/otelslog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-slog/otelslog/HEAD/README.md -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-slog/otelslog/HEAD/doc.go -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-slog/otelslog/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-slog/otelslog/HEAD/flake.nix -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-slog/otelslog/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-slog/otelslog/HEAD/go.sum -------------------------------------------------------------------------------- /handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-slog/otelslog/HEAD/handler.go -------------------------------------------------------------------------------- /handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-slog/otelslog/HEAD/handler_test.go -------------------------------------------------------------------------------- /resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-slog/otelslog/HEAD/resource.go -------------------------------------------------------------------------------- /resource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-slog/otelslog/HEAD/resource_test.go --------------------------------------------------------------------------------