undesired-detector
Version:
Analizador y detector de imágenes indeseadas e inapropiadas.
24 lines (16 loc) • 443 B
JavaScript
class UndesiredDetector {
constructor(user, key){
// Sightengine API key user
this.user = user;
// Sightengine API key secret
this.key = key;
// Login into Sightengine with the above credentials
const sightengine = require("sightengine")(key, user);
// Set the client
this.client = sightengine;
};
localImage(){
};
urlImage(){
};
}