redisconfig

package
v1.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 21, 2024 License: MIT Imports: 2 Imported by: 0

Documentation

Overview

Code generated from Pkl module `RedisConfig`. DO NOT EDIT.

Code generated from Pkl module `RedisConfig`. DO NOT EDIT.

Code generated from Pkl module `RedisConfig`. DO NOT EDIT.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Auth

type Auth struct {
	// Authorization Enabled
	Enabled bool `pkl:"enabled"`

	// Authorization username
	Username string `pkl:"username"`

	// Authorization password
	Password string `pkl:"password"`
}

type RedisConfig

type RedisConfig struct {
	// Redis Feature is enabled
	Enabled bool `pkl:"enabled"`

	// The hostname that Redis listens on
	Host string `pkl:"host"`

	// The port that Redis listens on
	Port int `pkl:"port"`

	// The Redis DB selection
	Db int `pkl:"db"`

	// Authorization settings for Redis
	Auth *Auth `pkl:"auth"`
}

func Load

func Load(ctx context.Context, evaluator pkl.Evaluator, source *pkl.ModuleSource) (*RedisConfig, error)

Load loads the pkl module at the given source and evaluates it with the given evaluator into a RedisConfig

func LoadFromPath

func LoadFromPath(ctx context.Context, path string) (ret *RedisConfig, err error)

LoadFromPath loads the pkl module at the given path and evaluates it into a RedisConfig

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL