Skip to content

Commit 00ca3c8

Browse files
add Title to Catalog (#183)
1 parent be67911 commit 00ca3c8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/catalog/types.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ type Server struct {
1717
Type string `yaml:"type" json:"type"`
1818
Image string `yaml:"image" json:"image"`
1919
Description string `yaml:"description,omitempty" json:"description,omitempty"`
20+
Title string `yaml:"title,omitempty" json:"title,omitempty"`
2021
LongLived bool `yaml:"longLived,omitempty" json:"longLived,omitempty"`
21-
Remote Remote `yaml:"remote,omitempty" json:"remote,omitempty"`
22+
Remote Remote `yaml:"remote" json:"remote"`
2223
SSEEndpoint string `yaml:"sseEndpoint,omitempty" json:"sseEndpoint,omitempty"` // Deprecated: Use Remote instead
2324
OAuth *OAuth `yaml:"oauth,omitempty" json:"oauth,omitempty"`
2425
Secrets []Secret `yaml:"secrets,omitempty" json:"secrets,omitempty"`

0 commit comments

Comments
 (0)