tvl-depot/tvix/build/protos/rpc_build.proto

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
284 B
Protocol Buffer
Raw Normal View History

// SPDX-License-Identifier: MIT
// Copyright © 2022 The Tvix Authors
syntax = "proto3";
package tvix.build.v1;
import "tvix/build/protos/build.proto";
option go_package = "code.tvl.fyi/tvix/build-go;buildv1";
service BuildService {
rpc DoBuild(BuildRequest) returns (Build);
}