captcha-igid
Version:
Authorization service for an intergalactic session
32 lines (24 loc) • 538 B
JavaScript
const {GeneralStatic} = require('copious-transitions')
const myStorageClass = null
class CaptchaStatic extends GeneralStatic {
//
constructor() {
super(myStorageClass)
//
this.preloaded = {
}
//
}
preload_all(conf) {
if ( conf.static_files ) {
this.generic_prep_cwd_offset(conf)
}
//
super.preload_all()
//
}
fetch(asset) {
return(super.fetch(asset))
}
}
module.exports = new CaptchaStatic()