From c9650d9b9501ef2e269ed00bafe7d711a0d9a06f Mon Sep 17 00:00:00 2001 From: Suleiman Dibirov Date: Fri, 12 Jul 2024 18:07:35 +0300 Subject: [PATCH] docs: Update README.md --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3794608..dcf4c79 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,9 @@ # go-collections +[![Go Report Card](https://goreportcard.com/badge/github.com/idsulik/go-collections)](https://goreportcard.com/report/github.com/idsulik/go-collections) +![Build Status](https://img.shields.io/github/actions/workflow/status/idsulik/go-collections/go.yaml?branch=main) +[![Version](https://img.shields.io/github/v/release/idsulik/go-collections)](https://github.com/idsulik/go-collections/releases) +[![License](https://img.shields.io/github/license/idsulik/go-collections)](https://github.com/idsulik/go-collections/blob/main/LICENSE) +[![GoDoc](https://pkg.go.dev/badge/github.com/idsulik/go-collections)](https://pkg.go.dev/github.com/idsulik/go-collections) `go-collections` is a Go library that provides implementations of common data structures including a double-ended queue (Deque), a linked list, a queue, and a stack. This package offers a simple and efficient way to use these structures in Go, with support for generic types. @@ -118,4 +123,4 @@ A LIFO (last-in, first-out) stack that supports standard stack operations. ## License -This project is licensed under the MIT License \ No newline at end of file +This project is licensed under the [MIT License](LICENSE) - see the [LICENSE](LICENSE) file for details.