mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-24 15:13:09 +00:00
20 lines
232 B
Protocol Buffer
20 lines
232 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package slash.api.v1;
|
|
|
|
option go_package = "gen/api/v1";
|
|
|
|
enum State {
|
|
STATE_UNSPECIFIED = 0;
|
|
ACTIVE = 1;
|
|
INACTIVE = 2;
|
|
}
|
|
|
|
enum Visibility {
|
|
VISIBILITY_UNSPECIFIED = 0;
|
|
|
|
WORKSPACE = 1;
|
|
|
|
PUBLIC = 2;
|
|
}
|