11 lines
188 B
Go
11 lines
188 B
Go
|
// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
|
||
|
|
||
|
package data
|
||
|
|
||
|
import (
|
||
|
)
|
||
|
|
||
|
type ConfigurationValueGetter interface {
|
||
|
GetValue(key string) (any, error)
|
||
|
}
|