import {Log} from 'ckn.core';
class Middleware {
constructor() {
this.log = new Log("CKN", "BACKEND", "Middleware");
this.priority = 99999;
}
async onStartingServer(backend, next) {
next();
}
async onInitialSession(backend, session, next) {
next();
}
}
export {Middleware}