mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-09-20 04:36:09 +08:00
9 lines
343 B
Go
9 lines
343 B
Go
![]() |
package model
|
||
|
|
||
|
type PluginReattachConfig struct {
|
||
|
Protocol string `json:"protocol,omitempty"` // Protocol type (e.g., "grpc", "netrpc")
|
||
|
Version int `json:"version,omitempty"` // Protocol version
|
||
|
Network string `json:"network,omitempty"` // Network type (e.g., "tcp", "unix")
|
||
|
Address string `json:"address,omitempty"` // Address
|
||
|
}
|