Start Here

What Changed

High-level changes covered by the v0.1.3 GoLazy guides.

By Guillermo Alvarez

v0.1.3 overview

This guide version introduced the current application assembly and dispatch shape:

  • lazyapp became the package that assembles context, views, routes, dispatcher middleware, and public files.
  • lazydispatch became the home for middleware, router dispatch, public-file fallback, and final 404 handling.
  • lazyroutes.Scope gained the route DSL used by applications.
  • Registered routes are collected into a route table with names, controller and action names, namespaces, and named params.
  • lazy routes can print the route table without starting the HTTP server.

Read Dispatcher for request flow and middleware. Read Routing for scopes, resources, route metadata, and lazy routes.