weight.go (444B)
1 package help 2 3 import "strings" 4 5 const weight = `The weight command sets your weight on an entry. 6 7 It accepts a single argument, a number which represents your weight. 8 The number may have a decimal component. 9 10 If the date used is the current date, your user data will also be updated. 11 This will default future entries to the inputted weight. 12 13 Example: 14 dqs weight 100.00 15 ` 16 17 func Weight() string { 18 var str strings.Builder 19 20 return str.String() 21 }