14 lines
230 B
Go
14 lines
230 B
Go
package model
|
|
|
|
import "github.com/redis/go-redis/v9"
|
|
|
|
type Akses struct {
|
|
AuthUrl string
|
|
BaseUrl string
|
|
ConsentUrl string
|
|
KfaUrl string
|
|
ClientId string
|
|
ClientSecret string
|
|
Redis *redis.Client
|
|
}
|