Add some comments

main
diff 2020-11-13 03:11:40 +00:00
parent 2445277b60
commit 557558cc88
1 changed files with 6 additions and 1 deletions

View File

@ -16,8 +16,10 @@ func main() {
panic(err)
}
// User status is written to ~/.venture
outputPath := path.Join(curUser.HomeDir, ".venture")
// Prompt user for input
fmt.Printf("What's ~%v been up to?\n~%v", curUser.Username, curUser.Username)
reader := bufio.NewReader(os.Stdin)
input, err := reader.ReadString('\n')
@ -25,6 +27,7 @@ func main() {
panic(err)
}
// Remove file on blank input
if len(input) < 1 {
err = os.Remove(outputPath)
if err != nil {
@ -33,8 +36,10 @@ func main() {
return
}
// Prepend status with user's name
input = "~"+curUser.Username+input
// Write file and create if it doesn't exist as world-readable.
err = ioutil.WriteFile(outputPath, []byte(input), 0644)
if err != nil {
panic(err)