mirror of
https://github.com/bolkedebruin/rdpgw.git
synced 2025-08-12 20:09:18 +02:00
14 lines
No EOL
180 B
Protocol Buffer
14 lines
No EOL
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;
|
|
} |