import log from 'fancy-log';

export const checkForUpdates = (version: string, cb: (err: string | null) => void) => {
  log("Not implemented yet");
  cb(null);
}
