github.com/Heebron/moby@v0.0.0-20221111184709-6eab4f55faf7/daemon/containerd/image_events.go (about) 1 package containerd 2 3 // LogImageEvent generates an event related to an image with only the 4 // default attributes. 5 func (i *ImageService) LogImageEvent(imageID, refName, action string) { 6 panic("not implemented") 7 } 8 9 // LogImageEventWithAttributes generates an event related to an image with 10 // specific given attributes. 11 func (i *ImageService) LogImageEventWithAttributes(imageID, refName, action string, attributes map[string]string) { 12 panic("not implemented") 13 }