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.

12 lines
282 B

2 years ago
syntax = "proto3";
package auth;
2 years ago
option go_package = "git.diulo.com/mogfee/kit/third_party/auth";
2 years ago
import "google/protobuf/descriptor.proto";
extend google.protobuf.MethodOptions{
1 year ago
// 权限|分割多个权限
2 years ago
string auth_key = 1111;
1 year ago
//是否必须授权
2 years ago
bool auth = 1112;
2 years ago
}