Skip to content

Commit

Permalink
Move Identifiable() out of '/util/sdk' package path to '/util'
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhung committed Jun 4, 2024
1 parent fa72b0b commit 4767cbd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.25.4 (June 4, 2024)

IMPROVEMENTS:

* Move Identifiable() out of `/util/sdk` package path to `/util`

## 1.25.3 (May 24, 2024)

IMPROVEMENTS:
Expand Down
4 changes: 0 additions & 4 deletions util/sdk/sdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,3 @@ func AddTelemetry(productId string, resourceMap map[string]*schema.Resource) map
}
return resourceMap
}

type Identifiable interface {
Id() string
}
4 changes: 4 additions & 0 deletions util/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -243,3 +243,7 @@ func ExecuteTemplate(name, temp string, fields interface{}) string {

return tpl.String()
}

type Identifiable interface {
Id() string
}

0 comments on commit 4767cbd

Please sign in to comment.