I would like to know if there is a way in Go to populate a password output with special characters when you are typing the password.
For example, I want to type the word "password" in the password field when it prompts me for the password. I want the output on the screen to look like this:
Enter Password: ********
Where the "********" are the characters of "password". Does GOLANG have something that will allow me to do this?
