Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Rand ¶
type Rand struct {
// contains filtered or unexported fields
}
Rand is a concurrency safe rand.Rand. Use NewRand to create a valid Rand.
type ServerSettings ¶
type ServerSettings struct {
// contains filtered or unexported fields
}
ServerSettings is a concurrency safe map. A ServerSettings must not be copied after first use. Use NewServerSettings() instead of creating ServerSettings manually.
func NewServerSettings ¶
func NewServerSettings() *ServerSettings
NewServerSettings returns an empty ServerSettings.
func (*ServerSettings) Get ¶
func (s *ServerSettings) Get(key string) interface{}
Get returns the value for key.
func (*ServerSettings) GetOk ¶
func (s *ServerSettings) GetOk(key string) (interface{}, bool)
GetOk returns the value for key.
func (*ServerSettings) Set ¶
func (s *ServerSettings) Set(key string, val interface{})
Set sets the value for key.
Click to show internal directories.
Click to hide internal directories.