Removed unused model

This commit is contained in:
Alfred Kamanda 2024-10-31 14:13:21 +03:00
parent dc198215b1
commit bab3f673eb
Signed by: Alfred-mk
GPG Key ID: 7EA3D01708908703

View File

@ -1,18 +0,0 @@
package models
type ApiResponse struct {
OK bool `json:"ok"`
Description string `json:"description"`
Result Result `json:"result"`
}
type Result struct {
Holdings []Holding `json:"holdings"`
}
type Holding struct {
ContractAddress string `json:"contractAddress"`
TokenSymbol string `json:"tokenSymbol"`
TokenDecimals string `json:"tokenDecimals"`
Balance string `json:"balance"`
}