9 lines
211 B
Go
9 lines
211 B
Go
package config
|
|
|
|
import "fmt"
|
|
|
|
// Load is a placeholder for strict pipeline/session config decoding.
|
|
func Load(_ string, _ string) (*Config, error) {
|
|
return nil, fmt.Errorf("config load: not yet implemented")
|
|
}
|