jx/internal/data/config.go

11 lines
188 B
Go
Raw Normal View History

2024-08-15 15:12:42 +00:00
// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
package data
import (
)
type ConfigurationValueGetter interface {
GetValue(key string) (any, error)
}