package internal type Config struct { msg string } func (c *Config) GetMessage() string { if c.msg == "" { return "dirp" } return c.msg }