Create stubs and limit page size

This commit is contained in:
bel
2020-04-13 02:19:56 +00:00
parent eec859ed48
commit 117ad922e2
8 changed files with 58 additions and 5 deletions

View File

@@ -3,7 +3,9 @@ package transaction
import "encoding/json"
type Transaction struct {
Account string `json:"account"`
From string `json:"from"`
To string `json:"to"`
Category string `json:"category"`
Amount float32 `json:"amount"`
Timestamp int64 `json:"timestamp"`
Meta json.RawMessage `json:"meta"`