This repository has been archived on 2022-03-09. You can view files and clone it, but cannot push or open issues or pull requests.
snoo2nebby/vendor/github.com/turnage/redditproto/useragent.proto

13 lines
366 B
Protocol Buffer

syntax = "proto2";
package redditproto;
// UserAgent describes a non-user entity controlling a reddit account. This
// information is REQUIRED according the reddit api rules.
message UserAgent {
required string user_agent = 1;
required string client_id = 2;
required string client_secret = 3;
required string username = 4;
required string password = 5;
}