| 35 | } |
| 36 | |
| 37 | type Update struct { |
| 38 | v map[string]interface{} // these are anchors to ensure the right row/col gets updated |
| 39 | Column string // this is the header |
| 40 | Update interface{} // this is the new cell value |
| 41 | TableName string |
| 42 | } |
| 43 | |
| 44 | func (u *Update) GetValues() map[string]interface{} { |
| 45 | return u.v |
nothing calls this directly
no outgoing calls
no test coverage detected