Add html, handler and db mock

This commit is contained in:
2020-10-08 12:43:59 +02:00
parent 41c14ff6bb
commit e2aa46c891
14 changed files with 672 additions and 1 deletions

9
models/washitem.go Normal file
View File

@@ -0,0 +1,9 @@
package models
import "time"
type Washlist struct {
Person string `json:"person"`
Date time.Time `json:"date"`
IsWashed bool `json:"iswashed"`
}