menu

package module
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 4, 2024 License: MIT Imports: 4 Imported by: 0

README

climenu

CLI-Menu is a tool for creating small and simple menus in cli. Works on linux and windows 11

Examples

Create menu and start it

package main

import (
	"climenu"
	"fmt"
)

func main() {
	climenu.GetMenu("Test", climenu.GetMenuItems([]string{"Option 1", "Option 2", "Option 3"}, []func(){
		func() {
			fmt.Println("Option 1 ausgewählt.")
		},
		func() {
			fmt.Println("Option 2 ausgewählt.")
		},
		func() {
			fmt.Println("Option 3 ausgewählt.")
		},
	})).MenuInteraction(true)
}

This will look like this:

[X] Option 1
[ ] Option 2
[ ] Option 3

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func GetMenu

func GetMenu(headline string, items []menuItem) *menu

GetMenu creates an object of type menu

descr and cmd must have same length
will create the menuItems based on these

func GetMenuItems

func GetMenuItems(description []string, command []func()) []menuItem

GetMenuItems creates the items for the cli-menu

description and command must have same length

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL