mirror of
https://github.com/bolkedebruin/rdpgw.git
synced 2026-03-27 14:36:36 +00:00
14 lines
180 B
Protocol Buffer
14 lines
180 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package main;
|
|
|
|
option go_package = "./auth;main";
|
|
|
|
message UserPass {
|
|
string username = 1;
|
|
string password = 2;
|
|
}
|
|
|
|
message Response {
|
|
string status = 1;
|
|
} |