go-types/pkg/database/version.go

13 lines
252 B
Go
Raw Normal View History

2023-07-19 19:31:33 +01:00
package database
type Version struct {
2023-07-19 19:39:07 +01:00
Component string `json:"target"`
Target string `json:"component"`
Version string `json:"version"`
2023-07-19 19:31:33 +01:00
}
2023-07-19 19:53:15 +01:00
type VersionSelector struct {
Component string `json:"target"`
Target string `json:"component"`
}