github.com/mutagen-io/mutagen@v0.18.0-rc1/pkg/forwarding/version.proto (about) 1 syntax = "proto3"; 2 3 package forwarding; 4 5 option go_package = "github.com/mutagen-io/mutagen/pkg/forwarding"; 6 7 // Version specifies a session version, providing default behavior that can vary 8 // without affecting existing sessions. 9 enum Version { 10 // Invalid is the default session version and represents an unspecfied and 11 // invalid version. It is used as a sanity check to ensure that version is 12 // set for a session. 13 Invalid = 0; 14 // Version1 represents session version 1. 15 Version1 = 1; 16 }