forked from ebhomengo/niki
12 lines
477 B
Go
12 lines
477 B
Go
package postgres
|
|
|
|
type statementKey uint
|
|
|
|
const (
|
|
StatementKeyAWalletGetTransactionHistory statementKey = iota + 1 //wallet
|
|
StatementKeyAWalletGetTotalCountTransactionHistory //wallet
|
|
StatementKeyWalletInsertTransaction //wallet
|
|
StatementKeyWalletGetUserWallet //wallet
|
|
StatementKeyWalletUpsertBalance //wallet
|
|
)
|