conf.pb.go 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.30.0-devel
  4. // protoc v4.22.3
  5. // source: conf.proto
  6. package conf
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. durationpb "google.golang.org/protobuf/types/known/durationpb"
  11. reflect "reflect"
  12. sync "sync"
  13. )
  14. const (
  15. // Verify that this generated code is sufficiently up-to-date.
  16. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  17. // Verify that runtime/protoimpl is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  19. )
  20. type Bootstrap struct {
  21. state protoimpl.MessageState
  22. sizeCache protoimpl.SizeCache
  23. unknownFields protoimpl.UnknownFields
  24. Server *Server `protobuf:"bytes,1,opt,name=server,proto3" json:"server"`
  25. Data *Data `protobuf:"bytes,2,opt,name=data,proto3" json:"data"`
  26. TraceConf *TraceConf `protobuf:"bytes,4,opt,name=traceConf,proto3" json:"traceConf"`
  27. }
  28. func (x *Bootstrap) Reset() {
  29. *x = Bootstrap{}
  30. if protoimpl.UnsafeEnabled {
  31. mi := &file_conf_proto_msgTypes[0]
  32. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  33. ms.StoreMessageInfo(mi)
  34. }
  35. }
  36. func (x *Bootstrap) String() string {
  37. return protoimpl.X.MessageStringOf(x)
  38. }
  39. func (*Bootstrap) ProtoMessage() {}
  40. func (x *Bootstrap) ProtoReflect() protoreflect.Message {
  41. mi := &file_conf_proto_msgTypes[0]
  42. if protoimpl.UnsafeEnabled && x != nil {
  43. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  44. if ms.LoadMessageInfo() == nil {
  45. ms.StoreMessageInfo(mi)
  46. }
  47. return ms
  48. }
  49. return mi.MessageOf(x)
  50. }
  51. // Deprecated: Use Bootstrap.ProtoReflect.Descriptor instead.
  52. func (*Bootstrap) Descriptor() ([]byte, []int) {
  53. return file_conf_proto_rawDescGZIP(), []int{0}
  54. }
  55. func (x *Bootstrap) GetServer() *Server {
  56. if x != nil && x.Server != nil {
  57. return x.Server
  58. }
  59. return &Server{}
  60. }
  61. func (x *Bootstrap) GetData() *Data {
  62. if x != nil && x.Data != nil {
  63. return x.Data
  64. }
  65. return &Data{}
  66. }
  67. func (x *Bootstrap) GetTraceConf() *TraceConf {
  68. if x != nil && x.TraceConf != nil {
  69. return x.TraceConf
  70. }
  71. return &TraceConf{}
  72. }
  73. type TraceConf struct {
  74. state protoimpl.MessageState
  75. sizeCache protoimpl.SizeCache
  76. unknownFields protoimpl.UnknownFields
  77. Endpoint string `protobuf:"bytes,1,opt,name=endpoint,proto3" json:"endpoint"`
  78. Env string `protobuf:"bytes,2,opt,name=env,proto3" json:"env"`
  79. }
  80. func (x *TraceConf) Reset() {
  81. *x = TraceConf{}
  82. if protoimpl.UnsafeEnabled {
  83. mi := &file_conf_proto_msgTypes[1]
  84. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  85. ms.StoreMessageInfo(mi)
  86. }
  87. }
  88. func (x *TraceConf) String() string {
  89. return protoimpl.X.MessageStringOf(x)
  90. }
  91. func (*TraceConf) ProtoMessage() {}
  92. func (x *TraceConf) ProtoReflect() protoreflect.Message {
  93. mi := &file_conf_proto_msgTypes[1]
  94. if protoimpl.UnsafeEnabled && x != nil {
  95. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  96. if ms.LoadMessageInfo() == nil {
  97. ms.StoreMessageInfo(mi)
  98. }
  99. return ms
  100. }
  101. return mi.MessageOf(x)
  102. }
  103. // Deprecated: Use TraceConf.ProtoReflect.Descriptor instead.
  104. func (*TraceConf) Descriptor() ([]byte, []int) {
  105. return file_conf_proto_rawDescGZIP(), []int{1}
  106. }
  107. func (x *TraceConf) GetEndpoint() string {
  108. if x != nil {
  109. return x.Endpoint
  110. }
  111. return ""
  112. }
  113. func (x *TraceConf) GetEnv() string {
  114. if x != nil {
  115. return x.Env
  116. }
  117. return ""
  118. }
  119. type Server struct {
  120. state protoimpl.MessageState
  121. sizeCache protoimpl.SizeCache
  122. unknownFields protoimpl.UnknownFields
  123. Http *Server_HTTP `protobuf:"bytes,1,opt,name=http,proto3" json:"http"`
  124. Grpc *Server_GRPC `protobuf:"bytes,2,opt,name=grpc,proto3" json:"grpc"`
  125. Registrar *Server_Registrar `protobuf:"bytes,3,opt,name=registrar,proto3" json:"registrar"`
  126. }
  127. func (x *Server) Reset() {
  128. *x = Server{}
  129. if protoimpl.UnsafeEnabled {
  130. mi := &file_conf_proto_msgTypes[2]
  131. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  132. ms.StoreMessageInfo(mi)
  133. }
  134. }
  135. func (x *Server) String() string {
  136. return protoimpl.X.MessageStringOf(x)
  137. }
  138. func (*Server) ProtoMessage() {}
  139. func (x *Server) ProtoReflect() protoreflect.Message {
  140. mi := &file_conf_proto_msgTypes[2]
  141. if protoimpl.UnsafeEnabled && x != nil {
  142. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  143. if ms.LoadMessageInfo() == nil {
  144. ms.StoreMessageInfo(mi)
  145. }
  146. return ms
  147. }
  148. return mi.MessageOf(x)
  149. }
  150. // Deprecated: Use Server.ProtoReflect.Descriptor instead.
  151. func (*Server) Descriptor() ([]byte, []int) {
  152. return file_conf_proto_rawDescGZIP(), []int{2}
  153. }
  154. func (x *Server) GetHttp() *Server_HTTP {
  155. if x != nil && x.Http != nil {
  156. return x.Http
  157. }
  158. return &Server_HTTP{}
  159. }
  160. func (x *Server) GetGrpc() *Server_GRPC {
  161. if x != nil && x.Grpc != nil {
  162. return x.Grpc
  163. }
  164. return &Server_GRPC{}
  165. }
  166. func (x *Server) GetRegistrar() *Server_Registrar {
  167. if x != nil && x.Registrar != nil {
  168. return x.Registrar
  169. }
  170. return &Server_Registrar{}
  171. }
  172. type Data struct {
  173. state protoimpl.MessageState
  174. sizeCache protoimpl.SizeCache
  175. unknownFields protoimpl.UnknownFields
  176. Database *Data_Database `protobuf:"bytes,1,opt,name=database,proto3" json:"database"`
  177. Redis *Data_Redis `protobuf:"bytes,2,opt,name=redis,proto3" json:"redis"`
  178. }
  179. func (x *Data) Reset() {
  180. *x = Data{}
  181. if protoimpl.UnsafeEnabled {
  182. mi := &file_conf_proto_msgTypes[3]
  183. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  184. ms.StoreMessageInfo(mi)
  185. }
  186. }
  187. func (x *Data) String() string {
  188. return protoimpl.X.MessageStringOf(x)
  189. }
  190. func (*Data) ProtoMessage() {}
  191. func (x *Data) ProtoReflect() protoreflect.Message {
  192. mi := &file_conf_proto_msgTypes[3]
  193. if protoimpl.UnsafeEnabled && x != nil {
  194. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  195. if ms.LoadMessageInfo() == nil {
  196. ms.StoreMessageInfo(mi)
  197. }
  198. return ms
  199. }
  200. return mi.MessageOf(x)
  201. }
  202. // Deprecated: Use Data.ProtoReflect.Descriptor instead.
  203. func (*Data) Descriptor() ([]byte, []int) {
  204. return file_conf_proto_rawDescGZIP(), []int{3}
  205. }
  206. func (x *Data) GetDatabase() *Data_Database {
  207. if x != nil && x.Database != nil {
  208. return x.Database
  209. }
  210. return &Data_Database{}
  211. }
  212. func (x *Data) GetRedis() *Data_Redis {
  213. if x != nil && x.Redis != nil {
  214. return x.Redis
  215. }
  216. return &Data_Redis{}
  217. }
  218. type Server_HTTP struct {
  219. state protoimpl.MessageState
  220. sizeCache protoimpl.SizeCache
  221. unknownFields protoimpl.UnknownFields
  222. Network string `protobuf:"bytes,1,opt,name=network,proto3" json:"network"`
  223. Addr string `protobuf:"bytes,2,opt,name=addr,proto3" json:"addr"`
  224. Timeout *durationpb.Duration `protobuf:"bytes,3,opt,name=timeout,proto3" json:"timeout"`
  225. }
  226. func (x *Server_HTTP) Reset() {
  227. *x = Server_HTTP{}
  228. if protoimpl.UnsafeEnabled {
  229. mi := &file_conf_proto_msgTypes[4]
  230. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  231. ms.StoreMessageInfo(mi)
  232. }
  233. }
  234. func (x *Server_HTTP) String() string {
  235. return protoimpl.X.MessageStringOf(x)
  236. }
  237. func (*Server_HTTP) ProtoMessage() {}
  238. func (x *Server_HTTP) ProtoReflect() protoreflect.Message {
  239. mi := &file_conf_proto_msgTypes[4]
  240. if protoimpl.UnsafeEnabled && x != nil {
  241. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  242. if ms.LoadMessageInfo() == nil {
  243. ms.StoreMessageInfo(mi)
  244. }
  245. return ms
  246. }
  247. return mi.MessageOf(x)
  248. }
  249. // Deprecated: Use Server_HTTP.ProtoReflect.Descriptor instead.
  250. func (*Server_HTTP) Descriptor() ([]byte, []int) {
  251. return file_conf_proto_rawDescGZIP(), []int{2, 0}
  252. }
  253. func (x *Server_HTTP) GetNetwork() string {
  254. if x != nil {
  255. return x.Network
  256. }
  257. return ""
  258. }
  259. func (x *Server_HTTP) GetAddr() string {
  260. if x != nil {
  261. return x.Addr
  262. }
  263. return ""
  264. }
  265. func (x *Server_HTTP) GetTimeout() *durationpb.Duration {
  266. if x != nil && x.Timeout != nil {
  267. return x.Timeout
  268. }
  269. return &durationpb.Duration{}
  270. }
  271. type Server_GRPC struct {
  272. state protoimpl.MessageState
  273. sizeCache protoimpl.SizeCache
  274. unknownFields protoimpl.UnknownFields
  275. Network string `protobuf:"bytes,1,opt,name=network,proto3" json:"network"`
  276. Addr string `protobuf:"bytes,2,opt,name=addr,proto3" json:"addr"`
  277. Timeout *durationpb.Duration `protobuf:"bytes,3,opt,name=timeout,proto3" json:"timeout"`
  278. }
  279. func (x *Server_GRPC) Reset() {
  280. *x = Server_GRPC{}
  281. if protoimpl.UnsafeEnabled {
  282. mi := &file_conf_proto_msgTypes[5]
  283. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  284. ms.StoreMessageInfo(mi)
  285. }
  286. }
  287. func (x *Server_GRPC) String() string {
  288. return protoimpl.X.MessageStringOf(x)
  289. }
  290. func (*Server_GRPC) ProtoMessage() {}
  291. func (x *Server_GRPC) ProtoReflect() protoreflect.Message {
  292. mi := &file_conf_proto_msgTypes[5]
  293. if protoimpl.UnsafeEnabled && x != nil {
  294. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  295. if ms.LoadMessageInfo() == nil {
  296. ms.StoreMessageInfo(mi)
  297. }
  298. return ms
  299. }
  300. return mi.MessageOf(x)
  301. }
  302. // Deprecated: Use Server_GRPC.ProtoReflect.Descriptor instead.
  303. func (*Server_GRPC) Descriptor() ([]byte, []int) {
  304. return file_conf_proto_rawDescGZIP(), []int{2, 1}
  305. }
  306. func (x *Server_GRPC) GetNetwork() string {
  307. if x != nil {
  308. return x.Network
  309. }
  310. return ""
  311. }
  312. func (x *Server_GRPC) GetAddr() string {
  313. if x != nil {
  314. return x.Addr
  315. }
  316. return ""
  317. }
  318. func (x *Server_GRPC) GetTimeout() *durationpb.Duration {
  319. if x != nil && x.Timeout != nil {
  320. return x.Timeout
  321. }
  322. return &durationpb.Duration{}
  323. }
  324. type Server_Registrar struct {
  325. state protoimpl.MessageState
  326. sizeCache protoimpl.SizeCache
  327. unknownFields protoimpl.UnknownFields
  328. Namespace string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace"`
  329. Group string `protobuf:"bytes,2,opt,name=group,proto3" json:"group"`
  330. Endpoint string `protobuf:"bytes,3,opt,name=endpoint,proto3" json:"endpoint"`
  331. }
  332. func (x *Server_Registrar) Reset() {
  333. *x = Server_Registrar{}
  334. if protoimpl.UnsafeEnabled {
  335. mi := &file_conf_proto_msgTypes[6]
  336. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  337. ms.StoreMessageInfo(mi)
  338. }
  339. }
  340. func (x *Server_Registrar) String() string {
  341. return protoimpl.X.MessageStringOf(x)
  342. }
  343. func (*Server_Registrar) ProtoMessage() {}
  344. func (x *Server_Registrar) ProtoReflect() protoreflect.Message {
  345. mi := &file_conf_proto_msgTypes[6]
  346. if protoimpl.UnsafeEnabled && x != nil {
  347. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  348. if ms.LoadMessageInfo() == nil {
  349. ms.StoreMessageInfo(mi)
  350. }
  351. return ms
  352. }
  353. return mi.MessageOf(x)
  354. }
  355. // Deprecated: Use Server_Registrar.ProtoReflect.Descriptor instead.
  356. func (*Server_Registrar) Descriptor() ([]byte, []int) {
  357. return file_conf_proto_rawDescGZIP(), []int{2, 2}
  358. }
  359. func (x *Server_Registrar) GetNamespace() string {
  360. if x != nil {
  361. return x.Namespace
  362. }
  363. return ""
  364. }
  365. func (x *Server_Registrar) GetGroup() string {
  366. if x != nil {
  367. return x.Group
  368. }
  369. return ""
  370. }
  371. func (x *Server_Registrar) GetEndpoint() string {
  372. if x != nil {
  373. return x.Endpoint
  374. }
  375. return ""
  376. }
  377. type Data_Database struct {
  378. state protoimpl.MessageState
  379. sizeCache protoimpl.SizeCache
  380. unknownFields protoimpl.UnknownFields
  381. Driver string `protobuf:"bytes,1,opt,name=driver,proto3" json:"driver"`
  382. Source string `protobuf:"bytes,2,opt,name=source,proto3" json:"source"`
  383. MaxIdleConns int32 `protobuf:"varint,3,opt,name=maxIdleConns,proto3" json:"maxIdleConns"`
  384. MaxOpenConns int32 `protobuf:"varint,4,opt,name=maxOpenConns,proto3" json:"maxOpenConns"`
  385. }
  386. func (x *Data_Database) Reset() {
  387. *x = Data_Database{}
  388. if protoimpl.UnsafeEnabled {
  389. mi := &file_conf_proto_msgTypes[7]
  390. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  391. ms.StoreMessageInfo(mi)
  392. }
  393. }
  394. func (x *Data_Database) String() string {
  395. return protoimpl.X.MessageStringOf(x)
  396. }
  397. func (*Data_Database) ProtoMessage() {}
  398. func (x *Data_Database) ProtoReflect() protoreflect.Message {
  399. mi := &file_conf_proto_msgTypes[7]
  400. if protoimpl.UnsafeEnabled && x != nil {
  401. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  402. if ms.LoadMessageInfo() == nil {
  403. ms.StoreMessageInfo(mi)
  404. }
  405. return ms
  406. }
  407. return mi.MessageOf(x)
  408. }
  409. // Deprecated: Use Data_Database.ProtoReflect.Descriptor instead.
  410. func (*Data_Database) Descriptor() ([]byte, []int) {
  411. return file_conf_proto_rawDescGZIP(), []int{3, 0}
  412. }
  413. func (x *Data_Database) GetDriver() string {
  414. if x != nil {
  415. return x.Driver
  416. }
  417. return ""
  418. }
  419. func (x *Data_Database) GetSource() string {
  420. if x != nil {
  421. return x.Source
  422. }
  423. return ""
  424. }
  425. func (x *Data_Database) GetMaxIdleConns() int32 {
  426. if x != nil {
  427. return x.MaxIdleConns
  428. }
  429. return 0
  430. }
  431. func (x *Data_Database) GetMaxOpenConns() int32 {
  432. if x != nil {
  433. return x.MaxOpenConns
  434. }
  435. return 0
  436. }
  437. type Data_Redis struct {
  438. state protoimpl.MessageState
  439. sizeCache protoimpl.SizeCache
  440. unknownFields protoimpl.UnknownFields
  441. Network string `protobuf:"bytes,1,opt,name=network,proto3" json:"network"`
  442. Addr string `protobuf:"bytes,2,opt,name=addr,proto3" json:"addr"`
  443. Db int32 `protobuf:"varint,3,opt,name=db,proto3" json:"db"`
  444. DialTimeout *durationpb.Duration `protobuf:"bytes,4,opt,name=dial_timeout,json=dialTimeout,proto3" json:"dial_timeout"`
  445. ReadTimeout *durationpb.Duration `protobuf:"bytes,5,opt,name=read_timeout,json=readTimeout,proto3" json:"read_timeout"`
  446. WriteTimeout *durationpb.Duration `protobuf:"bytes,6,opt,name=write_timeout,json=writeTimeout,proto3" json:"write_timeout"`
  447. PoolSize int32 `protobuf:"varint,7,opt,name=poolSize,proto3" json:"poolSize"`
  448. MinIdleConns int32 `protobuf:"varint,8,opt,name=minIdleConns,proto3" json:"minIdleConns"`
  449. }
  450. func (x *Data_Redis) Reset() {
  451. *x = Data_Redis{}
  452. if protoimpl.UnsafeEnabled {
  453. mi := &file_conf_proto_msgTypes[8]
  454. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  455. ms.StoreMessageInfo(mi)
  456. }
  457. }
  458. func (x *Data_Redis) String() string {
  459. return protoimpl.X.MessageStringOf(x)
  460. }
  461. func (*Data_Redis) ProtoMessage() {}
  462. func (x *Data_Redis) ProtoReflect() protoreflect.Message {
  463. mi := &file_conf_proto_msgTypes[8]
  464. if protoimpl.UnsafeEnabled && x != nil {
  465. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  466. if ms.LoadMessageInfo() == nil {
  467. ms.StoreMessageInfo(mi)
  468. }
  469. return ms
  470. }
  471. return mi.MessageOf(x)
  472. }
  473. // Deprecated: Use Data_Redis.ProtoReflect.Descriptor instead.
  474. func (*Data_Redis) Descriptor() ([]byte, []int) {
  475. return file_conf_proto_rawDescGZIP(), []int{3, 1}
  476. }
  477. func (x *Data_Redis) GetNetwork() string {
  478. if x != nil {
  479. return x.Network
  480. }
  481. return ""
  482. }
  483. func (x *Data_Redis) GetAddr() string {
  484. if x != nil {
  485. return x.Addr
  486. }
  487. return ""
  488. }
  489. func (x *Data_Redis) GetDb() int32 {
  490. if x != nil {
  491. return x.Db
  492. }
  493. return 0
  494. }
  495. func (x *Data_Redis) GetDialTimeout() *durationpb.Duration {
  496. if x != nil && x.DialTimeout != nil {
  497. return x.DialTimeout
  498. }
  499. return &durationpb.Duration{}
  500. }
  501. func (x *Data_Redis) GetReadTimeout() *durationpb.Duration {
  502. if x != nil && x.ReadTimeout != nil {
  503. return x.ReadTimeout
  504. }
  505. return &durationpb.Duration{}
  506. }
  507. func (x *Data_Redis) GetWriteTimeout() *durationpb.Duration {
  508. if x != nil && x.WriteTimeout != nil {
  509. return x.WriteTimeout
  510. }
  511. return &durationpb.Duration{}
  512. }
  513. func (x *Data_Redis) GetPoolSize() int32 {
  514. if x != nil {
  515. return x.PoolSize
  516. }
  517. return 0
  518. }
  519. func (x *Data_Redis) GetMinIdleConns() int32 {
  520. if x != nil {
  521. return x.MinIdleConns
  522. }
  523. return 0
  524. }
  525. var File_conf_proto protoreflect.FileDescriptor
  526. var file_conf_proto_rawDesc = []byte{
  527. 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x66, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0a, 0x6b, 0x72,
  528. 0x61, 0x74, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  529. 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69,
  530. 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x92, 0x01, 0x0a, 0x09, 0x42, 0x6f, 0x6f,
  531. 0x74, 0x73, 0x74, 0x72, 0x61, 0x70, 0x12, 0x2a, 0x0a, 0x06, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  532. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x6b, 0x72, 0x61, 0x74, 0x6f, 0x73, 0x2e,
  533. 0x61, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x52, 0x06, 0x73, 0x65, 0x72, 0x76,
  534. 0x65, 0x72, 0x12, 0x24, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
  535. 0x32, 0x10, 0x2e, 0x6b, 0x72, 0x61, 0x74, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x44, 0x61,
  536. 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x33, 0x0a, 0x09, 0x74, 0x72, 0x61, 0x63,
  537. 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x6b, 0x72,
  538. 0x61, 0x74, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x54, 0x72, 0x61, 0x63, 0x65, 0x43, 0x6f,
  539. 0x6e, 0x66, 0x52, 0x09, 0x74, 0x72, 0x61, 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x22, 0x39, 0x0a,
  540. 0x09, 0x54, 0x72, 0x61, 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x12, 0x1a, 0x0a, 0x08, 0x65, 0x6e,
  541. 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x6e,
  542. 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x65, 0x6e, 0x76, 0x18, 0x02, 0x20,
  543. 0x01, 0x28, 0x09, 0x52, 0x03, 0x65, 0x6e, 0x76, 0x22, 0xd1, 0x03, 0x0a, 0x06, 0x53, 0x65, 0x72,
  544. 0x76, 0x65, 0x72, 0x12, 0x2b, 0x0a, 0x04, 0x68, 0x74, 0x74, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28,
  545. 0x0b, 0x32, 0x17, 0x2e, 0x6b, 0x72, 0x61, 0x74, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x53,
  546. 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x48, 0x54, 0x54, 0x50, 0x52, 0x04, 0x68, 0x74, 0x74, 0x70,
  547. 0x12, 0x2b, 0x0a, 0x04, 0x67, 0x72, 0x70, 0x63, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17,
  548. 0x2e, 0x6b, 0x72, 0x61, 0x74, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x53, 0x65, 0x72, 0x76,
  549. 0x65, 0x72, 0x2e, 0x47, 0x52, 0x50, 0x43, 0x52, 0x04, 0x67, 0x72, 0x70, 0x63, 0x12, 0x3a, 0x0a,
  550. 0x09, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b,
  551. 0x32, 0x1c, 0x2e, 0x6b, 0x72, 0x61, 0x74, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x53, 0x65,
  552. 0x72, 0x76, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x72, 0x52, 0x09,
  553. 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x72, 0x1a, 0x69, 0x0a, 0x04, 0x48, 0x54, 0x54,
  554. 0x50, 0x12, 0x18, 0x0a, 0x07, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x18, 0x01, 0x20, 0x01,
  555. 0x28, 0x09, 0x52, 0x07, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x12, 0x12, 0x0a, 0x04, 0x61,
  556. 0x64, 0x64, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x64, 0x64, 0x72, 0x12,
  557. 0x33, 0x0a, 0x07, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b,
  558. 0x32, 0x19, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  559. 0x75, 0x66, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x07, 0x74, 0x69, 0x6d,
  560. 0x65, 0x6f, 0x75, 0x74, 0x1a, 0x69, 0x0a, 0x04, 0x47, 0x52, 0x50, 0x43, 0x12, 0x18, 0x0a, 0x07,
  561. 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6e,
  562. 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x64, 0x64, 0x72, 0x18, 0x02,
  563. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x64, 0x64, 0x72, 0x12, 0x33, 0x0a, 0x07, 0x74, 0x69,
  564. 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x67, 0x6f,
  565. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x44, 0x75,
  566. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x07, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x1a,
  567. 0x5b, 0x0a, 0x09, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x72, 0x12, 0x1c, 0x0a, 0x09,
  568. 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  569. 0x09, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x67, 0x72,
  570. 0x6f, 0x75, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x67, 0x72, 0x6f, 0x75, 0x70,
  571. 0x12, 0x1a, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01,
  572. 0x28, 0x09, 0x52, 0x08, 0x65, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x22, 0xb4, 0x04, 0x0a,
  573. 0x04, 0x44, 0x61, 0x74, 0x61, 0x12, 0x35, 0x0a, 0x08, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73,
  574. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x6b, 0x72, 0x61, 0x74, 0x6f, 0x73,
  575. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61,
  576. 0x73, 0x65, 0x52, 0x08, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x12, 0x2c, 0x0a, 0x05,
  577. 0x72, 0x65, 0x64, 0x69, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x6b, 0x72,
  578. 0x61, 0x74, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x52, 0x65,
  579. 0x64, 0x69, 0x73, 0x52, 0x05, 0x72, 0x65, 0x64, 0x69, 0x73, 0x1a, 0x82, 0x01, 0x0a, 0x08, 0x44,
  580. 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x72, 0x69, 0x76, 0x65,
  581. 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x64, 0x72, 0x69, 0x76, 0x65, 0x72, 0x12,
  582. 0x16, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  583. 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x6d, 0x61, 0x78, 0x49, 0x64,
  584. 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x6d,
  585. 0x61, 0x78, 0x49, 0x64, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x6e, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x6d,
  586. 0x61, 0x78, 0x4f, 0x70, 0x65, 0x6e, 0x43, 0x6f, 0x6e, 0x6e, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28,
  587. 0x05, 0x52, 0x0c, 0x6d, 0x61, 0x78, 0x4f, 0x70, 0x65, 0x6e, 0x43, 0x6f, 0x6e, 0x6e, 0x73, 0x1a,
  588. 0xc1, 0x02, 0x0a, 0x05, 0x52, 0x65, 0x64, 0x69, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x6e, 0x65, 0x74,
  589. 0x77, 0x6f, 0x72, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6e, 0x65, 0x74, 0x77,
  590. 0x6f, 0x72, 0x6b, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x64, 0x64, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28,
  591. 0x09, 0x52, 0x04, 0x61, 0x64, 0x64, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x64, 0x62, 0x18, 0x03, 0x20,
  592. 0x01, 0x28, 0x05, 0x52, 0x02, 0x64, 0x62, 0x12, 0x3c, 0x0a, 0x0c, 0x64, 0x69, 0x61, 0x6c, 0x5f,
  593. 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e,
  594. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  595. 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0b, 0x64, 0x69, 0x61, 0x6c, 0x54, 0x69,
  596. 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x12, 0x3c, 0x0a, 0x0c, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x74, 0x69,
  597. 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x67, 0x6f,
  598. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x44, 0x75,
  599. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0b, 0x72, 0x65, 0x61, 0x64, 0x54, 0x69, 0x6d, 0x65,
  600. 0x6f, 0x75, 0x74, 0x12, 0x3e, 0x0a, 0x0d, 0x77, 0x72, 0x69, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d,
  601. 0x65, 0x6f, 0x75, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x67, 0x6f, 0x6f,
  602. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x44, 0x75, 0x72,
  603. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0c, 0x77, 0x72, 0x69, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65,
  604. 0x6f, 0x75, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6f, 0x6f, 0x6c, 0x53, 0x69, 0x7a, 0x65, 0x18,
  605. 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x6f, 0x6f, 0x6c, 0x53, 0x69, 0x7a, 0x65, 0x12,
  606. 0x22, 0x0a, 0x0c, 0x6d, 0x69, 0x6e, 0x49, 0x64, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x6e, 0x73, 0x18,
  607. 0x08, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x6d, 0x69, 0x6e, 0x49, 0x64, 0x6c, 0x65, 0x43, 0x6f,
  608. 0x6e, 0x6e, 0x73, 0x42, 0x37, 0x5a, 0x35, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f,
  609. 0x6d, 0x2f, 0x67, 0x6f, 0x2d, 0x6b, 0x72, 0x61, 0x74, 0x6f, 0x73, 0x2f, 0x6b, 0x72, 0x61, 0x74,
  610. 0x6f, 0x73, 0x2d, 0x6c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e,
  611. 0x61, 0x6c, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x3b, 0x63, 0x6f, 0x6e, 0x66, 0x62, 0x06, 0x70, 0x72,
  612. 0x6f, 0x74, 0x6f, 0x33,
  613. }
  614. var (
  615. file_conf_proto_rawDescOnce sync.Once
  616. file_conf_proto_rawDescData = file_conf_proto_rawDesc
  617. )
  618. func file_conf_proto_rawDescGZIP() []byte {
  619. file_conf_proto_rawDescOnce.Do(func() {
  620. file_conf_proto_rawDescData = protoimpl.X.CompressGZIP(file_conf_proto_rawDescData)
  621. })
  622. return file_conf_proto_rawDescData
  623. }
  624. var file_conf_proto_msgTypes = make([]protoimpl.MessageInfo, 9)
  625. var file_conf_proto_goTypes = []interface{}{
  626. (*Bootstrap)(nil), // 0: kratos.api.Bootstrap
  627. (*TraceConf)(nil), // 1: kratos.api.TraceConf
  628. (*Server)(nil), // 2: kratos.api.Server
  629. (*Data)(nil), // 3: kratos.api.Data
  630. (*Server_HTTP)(nil), // 4: kratos.api.Server.HTTP
  631. (*Server_GRPC)(nil), // 5: kratos.api.Server.GRPC
  632. (*Server_Registrar)(nil), // 6: kratos.api.Server.Registrar
  633. (*Data_Database)(nil), // 7: kratos.api.Data.Database
  634. (*Data_Redis)(nil), // 8: kratos.api.Data.Redis
  635. (*durationpb.Duration)(nil), // 9: google.protobuf.Duration
  636. }
  637. var file_conf_proto_depIdxs = []int32{
  638. 2, // 0: kratos.api.Bootstrap.server:type_name -> kratos.api.Server
  639. 3, // 1: kratos.api.Bootstrap.data:type_name -> kratos.api.Data
  640. 1, // 2: kratos.api.Bootstrap.traceConf:type_name -> kratos.api.TraceConf
  641. 4, // 3: kratos.api.Server.http:type_name -> kratos.api.Server.HTTP
  642. 5, // 4: kratos.api.Server.grpc:type_name -> kratos.api.Server.GRPC
  643. 6, // 5: kratos.api.Server.registrar:type_name -> kratos.api.Server.Registrar
  644. 7, // 6: kratos.api.Data.database:type_name -> kratos.api.Data.Database
  645. 8, // 7: kratos.api.Data.redis:type_name -> kratos.api.Data.Redis
  646. 9, // 8: kratos.api.Server.HTTP.timeout:type_name -> google.protobuf.Duration
  647. 9, // 9: kratos.api.Server.GRPC.timeout:type_name -> google.protobuf.Duration
  648. 9, // 10: kratos.api.Data.Redis.dial_timeout:type_name -> google.protobuf.Duration
  649. 9, // 11: kratos.api.Data.Redis.read_timeout:type_name -> google.protobuf.Duration
  650. 9, // 12: kratos.api.Data.Redis.write_timeout:type_name -> google.protobuf.Duration
  651. 13, // [13:13] is the sub-list for method output_type
  652. 13, // [13:13] is the sub-list for method input_type
  653. 13, // [13:13] is the sub-list for extension type_name
  654. 13, // [13:13] is the sub-list for extension extendee
  655. 0, // [0:13] is the sub-list for field type_name
  656. }
  657. func init() { file_conf_proto_init() }
  658. func file_conf_proto_init() {
  659. if File_conf_proto != nil {
  660. return
  661. }
  662. if !protoimpl.UnsafeEnabled {
  663. file_conf_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  664. switch v := v.(*Bootstrap); i {
  665. case 0:
  666. return &v.state
  667. case 1:
  668. return &v.sizeCache
  669. case 2:
  670. return &v.unknownFields
  671. default:
  672. return nil
  673. }
  674. }
  675. file_conf_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  676. switch v := v.(*TraceConf); i {
  677. case 0:
  678. return &v.state
  679. case 1:
  680. return &v.sizeCache
  681. case 2:
  682. return &v.unknownFields
  683. default:
  684. return nil
  685. }
  686. }
  687. file_conf_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  688. switch v := v.(*Server); i {
  689. case 0:
  690. return &v.state
  691. case 1:
  692. return &v.sizeCache
  693. case 2:
  694. return &v.unknownFields
  695. default:
  696. return nil
  697. }
  698. }
  699. file_conf_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  700. switch v := v.(*Data); i {
  701. case 0:
  702. return &v.state
  703. case 1:
  704. return &v.sizeCache
  705. case 2:
  706. return &v.unknownFields
  707. default:
  708. return nil
  709. }
  710. }
  711. file_conf_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  712. switch v := v.(*Server_HTTP); i {
  713. case 0:
  714. return &v.state
  715. case 1:
  716. return &v.sizeCache
  717. case 2:
  718. return &v.unknownFields
  719. default:
  720. return nil
  721. }
  722. }
  723. file_conf_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  724. switch v := v.(*Server_GRPC); i {
  725. case 0:
  726. return &v.state
  727. case 1:
  728. return &v.sizeCache
  729. case 2:
  730. return &v.unknownFields
  731. default:
  732. return nil
  733. }
  734. }
  735. file_conf_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  736. switch v := v.(*Server_Registrar); i {
  737. case 0:
  738. return &v.state
  739. case 1:
  740. return &v.sizeCache
  741. case 2:
  742. return &v.unknownFields
  743. default:
  744. return nil
  745. }
  746. }
  747. file_conf_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  748. switch v := v.(*Data_Database); i {
  749. case 0:
  750. return &v.state
  751. case 1:
  752. return &v.sizeCache
  753. case 2:
  754. return &v.unknownFields
  755. default:
  756. return nil
  757. }
  758. }
  759. file_conf_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  760. switch v := v.(*Data_Redis); i {
  761. case 0:
  762. return &v.state
  763. case 1:
  764. return &v.sizeCache
  765. case 2:
  766. return &v.unknownFields
  767. default:
  768. return nil
  769. }
  770. }
  771. }
  772. type x struct{}
  773. out := protoimpl.TypeBuilder{
  774. File: protoimpl.DescBuilder{
  775. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  776. RawDescriptor: file_conf_proto_rawDesc,
  777. NumEnums: 0,
  778. NumMessages: 9,
  779. NumExtensions: 0,
  780. NumServices: 0,
  781. },
  782. GoTypes: file_conf_proto_goTypes,
  783. DependencyIndexes: file_conf_proto_depIdxs,
  784. MessageInfos: file_conf_proto_msgTypes,
  785. }.Build()
  786. File_conf_proto = out.File
  787. file_conf_proto_rawDesc = nil
  788. file_conf_proto_goTypes = nil
  789. file_conf_proto_depIdxs = nil
  790. }