mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-07-16 12:25:43 -04:00
Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
15 lines
270 B
Protocol Buffer
15 lines
270 B
Protocol Buffer
// Copyright IBM Corp. 2010, 2025
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
syntax = "proto3";
|
|
|
|
package myplugin;
|
|
|
|
option go_package = "vagrant-ruby/builtin/myplugin/proto";
|
|
|
|
message UpResult {}
|
|
|
|
message CommunicatorOptions {
|
|
string keep_alive = 1;
|
|
int64 timeout = 2;
|
|
}
|