You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cointop/cointop/menu.go

21 lines
376 B
Go

package cointop
import (
"github.com/cointop-sh/cointop/pkg/ui"
log "github.com/sirupsen/logrus"
)
// MenuView is structure for menu view
type MenuView = ui.View
// NewMenuView returns a new menu view
func NewMenuView() *MenuView {
return ui.NewView("menu")
}
// HideMenu hides the menu view
func (ct *Cointop) HideMenu() error {
log.Debug("HideMenu()")
return nil
}