(val int)
| 205 | } |
| 206 | |
| 207 | func Int64Ptr(val int) *int64 { |
| 208 | var p = new(int64) |
| 209 | *p = int64(val) |
| 210 | |
| 211 | return p |
| 212 | } |
| 213 | |
| 214 | func (api *API) persistServerMetadata(name string, ipAddress string, port int, transaction string, version int64) { |
| 215 | newServer := &models.Server{ |
no outgoing calls
no test coverage detected