5 lines
117 B
JavaScript
5 lines
117 B
JavaScript
|
module.exports = async (ctx, next) => {
|
||
|
// TODO: need to check the API key provided in the header
|
||
|
await next()
|
||
|
}
|