src

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

config.go (545B)


      1 package help
      2 
      3 import "strings"
      4 
      5 const config = `The config command is used to configure dqs.
      6 
      7 It allows for entry of the following fields:
      8 
      9 Name
     10 Birthday
     11 Units (imperial or metric*)
     12 Height
     13 Weight
     14 Body Fat Percentage
     15 Diet (omnivore, vegan, or vegetarian*)
     16 Target Weight
     17 
     18 All fields are optional. Units default to metric; the default diet is
     19 vegetarian.
     20 
     21 This command will be invoked automatically the first time dqs is run.
     22 
     23 Example:
     24 dqs config
     25 `
     26 
     27 func Config() string {
     28 	var str strings.Builder
     29 
     30 	str.WriteString(config)
     31 
     32 	return str.String()
     33 }