internal/component: Check for provisionable

This commit is contained in:
Tom Wiesing 2022-12-13 10:10:51 +01:00
parent 5053c982aa
commit 2a308ee03c
No known key found for this signature in database
6 changed files with 24 additions and 20 deletions

View file

@ -21,9 +21,10 @@ type SQL struct {
}
var (
_ component.Backupable = (*SQL)(nil)
_ component.Snapshotable = (*SQL)(nil)
_ component.Installable = (*SQL)(nil)
_ component.Backupable = (*SQL)(nil)
_ component.Snapshotable = (*SQL)(nil)
_ component.Installable = (*SQL)(nil)
_ component.Provisionable = (*SQL)(nil)
)
func (sql *SQL) Path() string {