2024-07-18 07:38:25 +02:00
|
|
|
syntax = "proto3";
|
|
|
|
package headscale.v1;
|
2024-12-10 16:23:55 +01:00
|
|
|
option go_package = "github.com/juanfont/headscale/gen/go/v1";
|
2024-07-18 07:38:25 +02:00
|
|
|
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
|
2024-12-10 16:23:55 +01:00
|
|
|
message SetPolicyRequest { string policy = 1; }
|
2024-07-18 07:38:25 +02:00
|
|
|
|
|
|
|
message SetPolicyResponse {
|
2024-12-10 16:23:55 +01:00
|
|
|
string policy = 1;
|
|
|
|
google.protobuf.Timestamp updated_at = 2;
|
2024-07-18 07:38:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
message GetPolicyRequest {}
|
|
|
|
|
|
|
|
message GetPolicyResponse {
|
2024-12-10 16:23:55 +01:00
|
|
|
string policy = 1;
|
|
|
|
google.protobuf.Timestamp updated_at = 2;
|
|
|
|
}
|