axios.post(`${API_URI}/license/verify`, { license_key: licensekey, product_type: PRODUCT_TYPE }).then((res) => {
    const expired = res.data.data.expired
    if (!expired) {
      autoUpdater.checkForUpdates()
    } else {