Skip to content

Instantly share code, notes, and snippets.

View cachesdev's full-sized avatar
🎯
Focusing

Gustavo Dominguez cachesdev

🎯
Focusing
  • Caaguazu
View GitHub Profile
@cachesdev
cachesdev / session.go
Created August 10, 2025 14:43
Simple JSON based session library for Go
package session
import (
"context"
"database/sql"
"encoding/json"
"fmt"
"time"
"github.com/jackc/pgx/v5/pgxpool"
@cachesdev
cachesdev / validate.go
Created May 10, 2025 21:33
toy example of validation library
package validate
import (
"regexp"
"strings"
)
type validator struct {
errors map[string][]string
valid bool