conf

package
v1.0.1 Latest Latest
Warning

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

Go to latest
Published: May 17, 2026 License: MIT Imports: 0 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Repository

type Repository interface {
	// Has Determine if the given configuration value exists.
	Has(key string) bool

	// Get the specified configuration value.
	Get(key interface{}, defaultVal interface{}) interface{}

	// All Get all of the configuration items for the application.
	All() map[string]interface{}

	// Set a given configuration value.
	Set(key interface{}, value interface{})

	// Prepend a value onto an array configuration value.
	Prepend(key string, value interface{})

	// Push a value onto an array configuration value.
	Push(key string, value interface{})
}

Repository 接口定义

Source Files

  • repository.go

Jump to

Keyboard shortcuts

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