| 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; | |
| } |