32 lines
900 B
Protocol Buffer
32 lines
900 B
Protocol Buffer
syntax = "proto3";
|
||
|
||
package conf;
|
||
|
||
option go_package = "github.com/tx7do/kratos-bootstrap/gen/api/go/conf/v1;conf";
|
||
|
||
import "google/protobuf/duration.proto";
|
||
|
||
// 数据
|
||
message Data {
|
||
// 数据库
|
||
message Database {
|
||
string driver = 1; // 驱动名:mysql、postgresql、mongodb、sqlite……
|
||
string source = 2; // 数据源(DSN字符串)
|
||
bool migrate = 3; // 数据迁移开关
|
||
}
|
||
|
||
// redis
|
||
message Redis {
|
||
string network = 1; // 网络
|
||
string addr = 2; // 服务端地址
|
||
string password = 3; // 密码
|
||
int32 db = 4; // 数据库索引
|
||
google.protobuf.Duration dial_timeout = 5; // 连接超时时间
|
||
google.protobuf.Duration read_timeout = 6; // 读取超时时间
|
||
google.protobuf.Duration write_timeout = 7; // 写入超时时间
|
||
}
|
||
|
||
Database database = 1; // 数据库
|
||
Redis redis = 2; // Redis
|
||
}
|