var value_variable
        // Access data from within a read-only transactional block.
    db.View(func(tx *bolt.Tx) error {
        v := tx.Bucket([]byte("people")).Get([]byte("john"))
        fmt.Printf("John's last name is %s.\n", v)
        return nil
    })
How to assign john value to value_variable?
 
     
    