File: main.go

package info (click to toggle)
golang-github-charmbracelet-huh 0.5.2%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 656 kB
  • sloc: makefile: 15
file content (33 lines) | stat: -rw-r--r-- 490 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package main

import (
	"fmt"
	"time"

	"github.com/charmbracelet/huh"
)

func main() {

	count := 0
	go func() {
		for {
			count++
			time.Sleep(1 * time.Second)
		}
	}()

	descriptionFunc := func() string {
		return fmt.Sprintf("The count is: %d", count)
	}

	huh.NewForm(huh.NewGroup(
		huh.NewInput().
			Title("Fill in the input").
			DescriptionFunc(descriptionFunc, &count),
		huh.NewInput().
			Title("Fill in the input").
			DescriptionFunc(descriptionFunc, &count),
	)).Run()

}