mirror of
https://github.com/hairyhenderson/go-onerng.git
synced 2025-04-04 09:40:12 -05:00
21 lines
412 B
Go
21 lines
412 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/hairyhenderson/go-onerng"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// flushCmd represents the flush command
|
|
func flushCmd(ctx context.Context) *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "flush",
|
|
Short: "Flush the OneRNG's entropy pool",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
o := onerng.OneRNG{Path: opts.Device}
|
|
return o.Flush(ctx)
|
|
},
|
|
}
|
|
}
|