jx/internal/resource/config.go

12 lines
193 B
Go
Raw Permalink Normal View History

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