src

Go monorepo.
git clone git://code.dwrz.net/src
Log | Files | Refs

user.go (334B)


      1 package help
      2 
      3 import "strings"
      4 
      5 const user = `The user command displays your user data.
      6 
      7 This command may be used to confirm settings -- such as diet -- or the
      8 user's current measurements -- such as height and weight.
      9 
     10 Example:
     11 dqs user
     12 `
     13 
     14 func User() string {
     15 	var str strings.Builder
     16 
     17 	str.WriteString(user)
     18 
     19 	return str.String()
     20 }