Categorygithub.com/byReqz/go-ask-password
repositorypackage
0.0.0-20240807204823-b114480746b7
Repository: https://github.com/byreqz/go-ask-password.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

go-ask-password

systemd-ask-password like password prompt for go

example usage

pw, err := AskPassword.AskPassword("Password: ")
if err != nil {
	log.Fatal(err)
}
fmt.Println(pw)

also in <a href=./demo/password.go>demo/password.go and <a href=./demo/substitute.go>demo/substitute.go


This project is mostly based around mattn's go-tty.