mirror of
https://github.com/aljazceru/ark.git
synced 2026-02-21 02:44:19 +01:00
19 lines
294 B
Go
19 lines
294 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
var balanceCommand = cli.Command{
|
|
Name: "balance",
|
|
Usage: "Print balance of the Noah wallet",
|
|
Action: balanceAction,
|
|
}
|
|
|
|
func balanceAction(ctx *cli.Context) error {
|
|
fmt.Println("balance is not implemented yet")
|
|
return nil
|
|
}
|