import pb "github.com/ipfs/go-ipfs/routing/dht/pb" // Creating a new pb Record record := &pb.Record{ Key: []byte("my-key"), Value: []byte("my-value"), Ttl: 3600, // Cached for 1 hour } // Updating a pb Record record.Value = []byte("new-value") // Retrieving the key from a pb Record key := string(record.Key)These examples demonstrate how to create, update and retrieve data from a pb Record in the DHT system.