dont do raw.New, instead add raw.Raw.Refresh explicit

This commit is contained in:
bel
2023-03-25 10:17:36 -06:00
parent de261ae400
commit 2cae3c6d28
6 changed files with 14 additions and 1 deletions

View File

@@ -22,6 +22,9 @@ func NewRandom(generator func() byte) *Random {
return &Random{generator: generator}
}
func (r *Random) Refresh() {
}
func (r *Random) Close() {
}