github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/internal/model/identifiable.go (about)

     1  package model
     2  
     3  // Identifiable is an interface that can be used to identify an object.
     4  type Identifiable interface {
     5  	GetID() string
     6  }