Files
kratos-bootstrap/api/protos/conf/v1/kratos_conf_notify.proto
2024-11-19 22:41:10 +08:00

19 lines
416 B
Protocol Buffer

syntax = "proto3";
package conf;
option go_package = "github.com/tx7do/kratos-bootstrap/api/gen/go/conf/v1;conf";
// 通知消息
message Notification {
// 短信
message SMS {
string endpoint = 1; // 公网接入地址
string region_id = 2; // 地域ID
string access_key_id = 3; // 访问密钥ID
string access_key_secret = 4; // 访问密钥
}
optional SMS sms = 1;
}