diff --git a/exsync/returnonce.go b/exsync/returnonce.go index 8aae935..f3f5ae7 100644 --- a/exsync/returnonce.go +++ b/exsync/returnonce.go @@ -9,6 +9,8 @@ package exsync import "sync" // ReturnableOnce is a wrapper for sync.Once that can return a value +// +// Deprecated: Use [sync.OnceValues] instead. type ReturnableOnce[Value any] struct { once sync.Once output Value