File: version.proto

package info (click to toggle)
golang-github-humanlogio-api 0.0~git20250305.fa41d14-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,352 kB
  • sloc: sh: 45; makefile: 8
file content (13 lines) | stat: -rw-r--r-- 212 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
syntax = "proto3";

package types.v1;

option go_package = "types/v1;typesv1";

message Version {
  int32 major = 1;
  int32 minor = 2;
  int32 patch = 3;
  repeated string prereleases = 4;
  string build = 5;
}