mirror of
https://github.com/tweag/gomod2nix.git
synced 2024-11-09 12:09:08 +00:00
15 lines
250 B
Go
15 lines
250 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
martian "github.com/google/martian/v3"
|
|
"github.com/tharsis/ethermint/crypto/hd"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(hd.NewExtendedKey())
|
|
fmt.Println(grpc.Version)
|
|
fmt.Println(martian.Noop(""))
|
|
}
|