// Copyright 2024 Matthew Rich . All rights reserved. package resource import ( ) type ConfigurationValueGetter interface { GetValue(key string) (any, error) }