Files
ark/noah/balance.go
Pietralberto Mazza 0210d39866 Monorepo scaffolding (#16)
* Change scaffolding

* Fix gh action
2023-11-27 14:23:22 +01:00

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
}