godose/dose.go
Pratyush Desai d2a253fb24
Initialized
Add basic CRUD operations for the doselogging
and a list command.

Signed-off-by: Pratyush Desai <pratyush.desai@liberta.casa>
2025-06-14 18:16:55 +05:30

14 lines
177 B
Go

package main
import "time"
type Dose struct {
ID int
Time time.Time
Substance string
Dose float64
Unit string
Roa string
Notes string
}