feat: user items

This commit is contained in:
zzw
2026-08-24 15:57:08 +08:00
parent b7769ece4c
commit 132fb7c357
29 changed files with 1599 additions and 2031 deletions
+24
View File
@@ -0,0 +1,24 @@
syntax = "proto3";
package chore;
option go_package = "lone-services/rpc/chore";
import "google/api/annotations.proto";
service Chore {
rpc Policy(PolicyReq) returns (Response) {
option (google.api.http) = {
get: "/api/v3/chore/oss/policy"
body: "*"
};
}
}
message Response {
int32 code = 1;
string msg = 2;
string data = 3;
}
message PolicyReq {
string key = 1;
}