2025-10-15 10:43:58 -04:00

12 lines
221 B
Go

package ports
import (
"time"
)
type RedisConfigProvider interface {
GetString(key string) (string, error)
GetInt64(key string) (int64, error)
UpdateParam(key string, value string, expiration time.Duration) error
}