first commit
This commit is contained in:
20
protos/image.proto
Normal file
20
protos/image.proto
Normal file
@@ -0,0 +1,20 @@
|
||||
syntax = "proto3";
|
||||
package image;
|
||||
|
||||
service Image {
|
||||
rpc Merge (MergeReq) returns (Reply) {};
|
||||
rpc CreateAvatarOrnament (CreateAvatarOrnamentReq) returns (Reply) {};
|
||||
}
|
||||
|
||||
message MergeReq {
|
||||
string name = 1;
|
||||
}
|
||||
|
||||
message CreateAvatarOrnamentReq {
|
||||
string avatar_path = 1;
|
||||
string ornament_path = 2;
|
||||
}
|
||||
|
||||
message Reply {
|
||||
string path = 1;
|
||||
}
|
||||
Reference in New Issue
Block a user