blob: 2a95308bc1351c57224a6eca31242c083b9741c4 [file] [log] [blame]
Sergiusz Bazanski325e9472019-09-27 02:49:47 +02001syntax = "proto3";
2package proto;
3option go_package = "code.hackerspace.pl/hscloud/hswaw/smsgw/proto";
4
5message MessagesRequest {
6 string filter_body = 1;
7}
8
9message MessagesResponse {
10 string sender = 1;
11 string body = 3;
12 int64 timestamp = 4;
13}
14
15service SMSGateway {
16 rpc Messages(MessagesRequest) returns (stream MessagesResponse);
17}