From 29c6f3841d00c4d4c822898c97bf59326a9b44f4 Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Tue, 26 Sep 2023 18:37:59 +0900 Subject: [PATCH] initial commits --- ent/history.go | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 ent/history.go diff --git a/ent/history.go b/ent/history.go new file mode 100644 index 0000000..0e4c786 --- /dev/null +++ b/ent/history.go @@ -0,0 +1,11 @@ +package ent + +import ( + "sourcecode.social/reiver/go-opt" +) + +type History struct { + Day opt.Optional[string] `json:"day"` + Accounts opt.Optional[string] `json:"accounts"` + Uses opt.Optional[string] `json:"uses"` +}