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

6 lines
96 B
Go

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