src

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

report.go (422B)


      1 package help
      2 
      3 import "strings"
      4 
      5 const report = `The report command displays a report on your statistics
      6 and usage.
      7 
      8 The command will display the statistics on the following:
      9 
     10 Entries
     11 Body Fat
     12 DQS
     13 Weight
     14 
     15 It will also display recommendations as to which food categories you
     16 should eat more or less of, given past entries.
     17 `
     18 
     19 func Report() string {
     20 	var str strings.Builder
     21 
     22 	str.WriteString(report)
     23 
     24 	return str.String()
     25 }