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