package core import ( "errors" ) type Config struct { } func LoadConfig(configPath string) (*Config, error) { return nil, errors.New("Not implemented") }