schnutibox/api/proto/v1/schnutibox.proto

46 lines
869 B
Protocol Buffer
Raw Normal View History

2021-05-05 08:32:35 +02:00
syntax = "proto3";
package schnutibox.v1;
2021-05-05 08:32:35 +02:00
option go_package = "go.xsfx.dev/schnutibox/pkg/api/v1";
import "google/api/annotations.proto";
2021-08-05 09:43:35 +02:00
import "google/protobuf/duration.proto";
2021-05-05 08:32:35 +02:00
service IdentifierService {
rpc Identify (IdentifyRequest) returns (IdentifyResponse) {
option (google.api.http) = {
post: "/v1/identify"
body: "*"
};
}
2021-05-05 08:32:35 +02:00
}
message IdentifyRequest {
string id = 1;
}
message IdentifyResponse {
2021-05-05 08:32:35 +02:00
string name = 1;
repeated string uris = 2;
2021-05-05 08:32:35 +02:00
}
2021-08-05 09:43:35 +02:00
service TimerService {
rpc Create(Timer) returns (Timer) {
option (google.api.http) = {
post: "/v1/timer/set"
body: "*"
};
}
rpc Get(TimerEmpty) returns (Timer) {
option (google.api.http) = {
get: "/v1/timer/get"
};
}
}
message Timer {
google.protobuf.Duration duration = 1;
google.protobuf.Duration current = 2;
}
message TimerEmpty {}