type IsRsyncResponse struct {
IsRsync bool Banner string}
IsRsyncResponse is the response from the IsRsync function.
this is returned by IsRsync function.
@example
```javascript
const rsync = require('nuclei/rsync');
const isRsync = rsync.IsRsync('acme.com', 873);
log(toJSON(isRsync));
```