1syntax = "proto3"; 2package flutter_tools; 3 4message FileHash { 5 // The absolute path to the file on disk. 6 string path = 1; 7 8 // The last computed file hash. 9 string hash = 2; 10} 11 12message FileStorage { 13 // The current version of the file store. 14 int32 version = 1; 15 16 // All currently stored files. 17 repeated FileHash files = 2; 18} 19