Files
ntfywui/internal/store/rand.go
2026-01-12 13:51:52 +01:00

6 lines
98 B
Go

package store
import "crypto/rand"
func randRead(b []byte) (int, error) { return rand.Read(b) }