Implement rough architecture

This commit is contained in:
Martin Pander
2022-11-07 15:33:08 +01:00
parent 0ff700b945
commit 43c204f5b5
24 changed files with 1402 additions and 0 deletions

View File

@ -0,0 +1,14 @@
package models
import (
"gorm.io/datatypes"
)
type Journal struct {
Date datatypes.Date `gorm:"primaryKey"`
Thankful datatypes.JSON
LookingForward datatypes.JSON
BeenGreat datatypes.JSON
DoBetter datatypes.JSON
Journal string
}