/* * SPDX-FileCopyrightText: 2019-2021 Vishesh Handa * * SPDX-License-Identifier: AGPL-3.0-or-later */ syntax = "proto3"; package gitjournal; message BlobCTimeBuilderData { repeated bytes commitHashes = 1; repeated bytes treeHashes = 2; map map = 3; bytes headHash = 4; } message FileMTimeBuilderData { repeated bytes commitHashes = 1; map map = 3; bytes headHash = 4; } message TzDateTime { /// in seconds uint64 timestamp = 1; /// offset in seconds east of GMT int32 offset = 2; } message FileMTimeInfo { string filePath = 1; bytes hash = 2; TzDateTime dt = 3; }