#include config mach(){ return (config) { .resources = { {"home", "/", .mime = mime_txt, .get = { validate({"name", .validation = validate_not_empty, .fallback = "world"}), render(.template = "Hello {{name}}") } } } }; }