> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mellob.in/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> Learn how to install and start using the `karma` Go package for your project.

### Installation

To install the `karma` package, run the following command:

```bash icon="terminal" theme={null}
go get github.com/MelloB1989/karma
```

***

### Import the Package

You can import specific modules from the package as needed. For example, to use the database utility:

```go theme={null}
import "github.com/MelloB1989/karma/database"
```

***

### Example: Test PostgreSQL Connection

Here’s a simple usage example to test a PostgreSQL database connection using `karma`:

```go main.go theme={null}
package tests

import "github.com/MelloB1989/karma/database"

func TestDBConnection() {
	database.PostgresConn()
}
```
