Skip to content

Commit dd7d363

Browse files
committed
Refactor CreateSourceRequest struct to remove description field
- Removed the unused description field from CreateSourceRequest. - Updated comments to reflect the changes in the struct's fields.
1 parent 6b617f9 commit dd7d363

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

source_create.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@ import (
99
)
1010

1111
// CreateSourceRequest represents a request to create a new source connector.
12-
// It contains the name, description, and configuration for the source.
12+
// It contains the name and configuration for the source.
1313
type CreateSourceRequest struct {
14-
Name string
15-
Description string
16-
Config SourceConfigInput
14+
Name string
15+
Config SourceConfigInput
1716
}
1817

1918
// SourceConfigInput is an interface that all source connector configurations must implement.

0 commit comments

Comments
 (0)