blob: 63be878f4fcdbcad226c487efba55bbef7e78d32 [file] [log] [blame]
syntax = "proto3";
package flutter_tools;
message FileHash {
// The absolute path to the file on disk.
string path = 1;
// The last computed file hash.
string hash = 2;
}
message FileStorage {
// The current version of the file store.
int32 version = 1;
// All currently stored files.
repeated FileHash files = 2;
}