12 lines
221 B
Go
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
|
|
}
|