| 57 | } |
| 58 | |
| 59 | type Remote struct { |
| 60 | Client *sql.DB |
| 61 | From string |
| 62 | Database string |
| 63 | User string |
| 64 | Password string |
| 65 | Address string |
| 66 | Port uint |
| 67 | } |
| 68 | |
| 69 | func NewRemote(db Remote) *Remote { |
| 70 | return &db |
nothing calls this directly
no outgoing calls
no test coverage detected