package main import ( "fmt" "recipes/internal/config" ) func main() { // load config cfg := config.MustLoad() fmt.Printf("%+v", cfg) }