package storage import ( "github.com/redis/go-redis/v9" "github.com/uptrace/bun" ) type storage struct { db *bun.DB rdb *redis.Client } var instance *storage = nil