func (api *APIBuilder) DoneGlobal(handlers …context.Handler)

// DoneGlobal registers handlers that should run at the very end.
// It appends those handler(s) to all routes,
// including all parties, subdomains.
// It doesn’t care about call order, it will append the handlers to all
// existing routes and the future routes that may being registered.
//
// The given “handlers” will be executed only on matched and registered error routes.
//
// The difference from .UseGlobal is that this/or these Handler(s) are being always running last.
// Use of ctx.Next() at the previous handler is necessary.
// It’s always a good practise to call it right before the Application#Run function.