package
Version:
v0.0.0-...-8f95268
Opens a new window with list of versions in this module.
Published: Apr 12, 2023
License: MIT
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
View Source
const (
PseudoAccount = "c1e395d9-8c00-4124-819a-85b0402900cf"
)
type Account struct {
ID int `db:"id"`
AccountID string `db:"accountID"`
Balance int64 `db:"balance"`
}
const (
Action_UNKNOWN_ACTION Action = 0
Action_INCREASE Action = 1
Action_DECREASE Action = 2
)
type Transaction struct {
AccountID string `db:"accountID"`
Action Action `db:"action"`
Amount int64 `db:"amount"`
TimestampMs int64 `db:"timeMs"`
TradeID string `db:"tradeID"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.