├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ └── tests.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── _example ├── Makefile ├── go.mod ├── go.sum └── main.go ├── attributes.go ├── attributes_test.go ├── color.go ├── color_test.go ├── devslog.go ├── devslog_test.go ├── go.mod └── stacktrace.go /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-cz/devslog/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-cz/devslog/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-cz/devslog/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-cz/devslog/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-cz/devslog/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-cz/devslog/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | coverage.txt 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-cz/devslog/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-cz/devslog/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-cz/devslog/HEAD/README.md -------------------------------------------------------------------------------- /_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-cz/devslog/HEAD/_example/Makefile -------------------------------------------------------------------------------- /_example/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-cz/devslog/HEAD/_example/go.mod -------------------------------------------------------------------------------- /_example/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-cz/devslog/HEAD/_example/main.go -------------------------------------------------------------------------------- /attributes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-cz/devslog/HEAD/attributes.go -------------------------------------------------------------------------------- /attributes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-cz/devslog/HEAD/attributes_test.go -------------------------------------------------------------------------------- /color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-cz/devslog/HEAD/color.go -------------------------------------------------------------------------------- /color_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-cz/devslog/HEAD/color_test.go -------------------------------------------------------------------------------- /devslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-cz/devslog/HEAD/devslog.go -------------------------------------------------------------------------------- /devslog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-cz/devslog/HEAD/devslog_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/golang-cz/devslog 2 | 3 | go 1.21.0 4 | -------------------------------------------------------------------------------- /stacktrace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/golang-cz/devslog/HEAD/stacktrace.go --------------------------------------------------------------------------------