feat: docker mysql and redis

This commit is contained in:
zzw
2026-08-06 13:43:52 +08:00
parent 58242dee8d
commit c37cedc664
26 changed files with 1349 additions and 129 deletions
+16
View File
@@ -0,0 +1,16 @@
syntax = "proto3";
package order;
option go_package="./order";
message Request {
string ping = 1;
}
message Response {
string pong = 1;
}
service Order {
rpc Ping(Request) returns(Response);
}