Started connection pool. Wrote Close and Add functions.

This commit is contained in:
Jay
2026-04-14 22:12:39 -04:00
parent b84daa1f5b
commit fdae43e715
3 changed files with 268 additions and 0 deletions

View File

@@ -23,3 +23,7 @@ func NewConfigError(text string) error {
func NewConnectionError(text string) error {
return fmt.Errorf("connection error: %s", text)
}
func NewPoolError(text string) error {
return fmt.Errorf("pool error: %s", text)
}