automatisch / packages /backend /src /helpers /check-is-enterprise.js
musarehmani100's picture
Upload folder using huggingface_hub
3206347 verified
import { hasValidLicense } from './license.ee.js';
export const checkIsEnterprise = async (request, response, next) => {
if (await hasValidLicense()) {
next();
} else {
return response.status(404).end();
}
};