You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
330 B
17 lines
330 B
syntax = "proto3"; |
|
|
|
// use {app_id}.{version} as package name |
|
package app.resource.v1; |
|
|
|
// specify golang package name |
|
option go_package = "v1"; |
|
|
|
service AppResource { |
|
// 更新静态资源所有缓存 |
|
rpc ModuleUpdateCache(NoArgRequest) returns(NoReply); |
|
} |
|
|
|
// NoArgReq |
|
message NoArgRequest{} |
|
// NoReply |
|
message NoReply{} |