entry.go (399B)
1 package help 2 3 import "strings" 4 5 const entry = `The entry command displays the date's entry. 6 7 It is the default command run, if no command is specified. 8 9 The entry date is specified via the -date flag (run dqs -help to read 10 more about the flag). 11 12 Example: 13 dqs entry 14 15 The command is equivalent to: 16 dqs 17 ` 18 19 func Entry() string { 20 var str strings.Builder 21 22 str.WriteString(entry) 23 24 return str.String() 25 }