12/**3* IsRsync checks if a host is running a Rsync server.4* @example5* ```javascript6* const rsync = require('nuclei/rsync');7* const isRsync = rsync.IsRsync('acme.com', 873);8* log(toJSON(isRsync));9* ```10*/11export function IsRsync(host: string, port: number): IsRsyncResponse | null {12return null;13}14151617/**18* IsRsyncResponse is the response from the IsRsync function.19* this is returned by IsRsync function.20* @example21* ```javascript22* const rsync = require('nuclei/rsync');23* const isRsync = rsync.IsRsync('acme.com', 873);24* log(toJSON(isRsync));25* ```26*/27export interface IsRsyncResponse {2829IsRsync?: boolean,3031Banner?: string,32}33343536