Skip to content

Commit

Permalink
#197 Change CreateNewConfigAddDatasources to CreateNewConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj committed Jan 27, 2025
1 parent bc41f0f commit 7a54c4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning].

### Added in 0.15.0

- `createNewConfigAddDatasources`
- `createNewConfig`
- `getDataSources`
- `getTemplateConfigId`

Expand Down
2 changes: 1 addition & 1 deletion senzing/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ type SzConfig interface {
// Type SzConfigManager interface is a Golang representation of Senzing's libSzconfigmgr.h
type SzConfigManager interface {
AddConfig(ctx context.Context, configDefinition string, configComments string) (int64, error)
CreateNewConfigAddDataSources(ctx context.Context, configID int64, configComments string, dataSourceCodes ...string) (int64, error)
CreateNewConfig(ctx context.Context, configID int64, configComments string, dataSourceCodes ...string) (int64, error)
GetConfig(ctx context.Context, configID int64) (string, error)
GetConfigs(ctx context.Context) (string, error)
GetDataSources(ctx context.Context, configID int64) (string, error)
Expand Down

0 comments on commit 7a54c4c

Please sign in to comment.