func usersHandler(c martini.Context, db *sql.DB) { // Retrieve user from database user := getUserFromDB(db, c.Params["id"]) // Bind user object to context c.MapTo(user, (*User)(nil)) // Continue to next handler c.Next() } func userInfoHandler(user *User) { // Access user object from context fmt.Printf("User ID: %d", user.ID) }In this code example, the `usersHandler` retrieves a user object from a database and binds it to the context using `c.MapTo`. The `userInfoHandler` then accesses the user object from the context and prints out the user's ID. Overall, the `Context MapTo` function in Martini is a useful tool for sharing objects across different request handlers in a web application.