init commit

This commit is contained in:
ysandler
2026-01-27 22:01:30 -06:00
commit ee23a4f39c
22 changed files with 1605 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package database
import "time"
type Entry struct {
ID string `json:"id"`
Value string `json:"value"`
DateTime time.Time `json:"datetime"`
}