mirror of
https://github.com/hairyhenderson/go-onerng.git
synced 2025-04-04 09:40:12 -05:00
27 lines
514 B
Go
27 lines
514 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/hairyhenderson/go-onerng"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// idCmd represents the id command
|
|
func idCmd(ctx context.Context) *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "id",
|
|
Short: "Display the OneRNG's hardware id",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
o := onerng.OneRNG{Path: opts.Device}
|
|
id, err := o.Identify(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
fmt.Printf("OneRNG Hardware ID: %s\n", id)
|
|
return nil
|
|
},
|
|
}
|
|
}
|