package
0.0.0-20241019151556-e1d4c8ccf4a8
Repository: https://github.com/shortlink-org/shortlink.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# README

DataBase drivers

This package contains the database drivers for use in ShortLink services.

URI format

We use the following format for the database URI:

URI FORMAT

Graceful shutdown

Safely terminate database interactions by closing the associated Context:

ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
// Utilize ctx in your database tasks