any-sync/client/util/releasecontainer.go

7 lines
81 B
Go

package util
type ReleaseContainer[T any] struct {
Object T
Release func()
}