```go var Hashes map[string]*FileHash type FileHash struct { PathOnDisk string Hash []byte } ``` PathOnDisk is stored in that struct, but it's also used as the map's key (that `[string]` at the top).