mirror of
https://github.com/tweag/gomod2nix.git
synced 2024-11-10 04:21:33 +00:00
12 lines
126 B
Go
12 lines
126 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/tharsis/ethermint/crypto/hd"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
fmt.Println(hd.NewExtendedKey())
|
||
|
}
|