mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-10 12:30:24 +08:00
18 lines
197 B
Protocol Buffer
18 lines
197 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package admin;
|
|
|
|
option go_package = "./admin";
|
|
|
|
service Service {
|
|
rpc login (LoginRequest) returns (LoginResponse) {
|
|
}
|
|
}
|
|
|
|
message LoginRequest {
|
|
|
|
}
|
|
|
|
message LoginResponse {
|
|
|
|
} |