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 (20 lines) | stat: -rw-r--r-- 412 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package main

import "github.com/charmbracelet/huh"

// TODO: ensure input is not plagiarized.
func checkForPlagiarism(s string) error { return nil }

func main() {
	var story string

	text := huh.NewText().
		Title("Tell me a story.").
		Validate(checkForPlagiarism).
		Placeholder("What's on your mind?").
		Value(&story)

	// Create a form to show help.
	form := huh.NewForm(huh.NewGroup(text))
	form.Run()
}