service: add min/max supported ver and target ver to GetVersion resp (#1718)

Fixes #1713
This commit is contained in:
Alessandro Arzilli
2019-10-23 01:39:22 +02:00
committed by Derek Parker
parent 6c8c4508db
commit d064d1fe05
3 changed files with 21 additions and 9 deletions

View File

@ -413,9 +413,13 @@ type GetVersionIn struct {
// GetVersionOut is the result of GetVersion.
type GetVersionOut struct {
DelveVersion string
APIVersion int
Backend string // backend currently in use
DelveVersion string
APIVersion int
Backend string // backend currently in use
TargetGoVersion string
MinSupportedVersionOfGo string
MaxSupportedVersionOfGo string
}
// SetAPIVersionIn is the input for SetAPIVersion.