src

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

export.go (341B)


      1 package help
      2 
      3 import "strings"
      4 
      5 const export = `The export command prints statistics from all entries.
      6 
      7 The columns are date, body-fat, diet quality score, and weight.
      8 
      9 The export format is Comma Separate Values (CSV).
     10 
     11 Example:
     12 dqs export
     13 `
     14 
     15 func Export() string {
     16 	var str strings.Builder
     17 
     18 	str.WriteString(export)
     19 
     20 	return str.String()
     21 }