7 lines
152 B
TypeScript
7 lines
152 B
TypeScript
import { Context } from '@/middleware/Context';
|
|
|
|
export default function log({ next, to, from }: Context) {
|
|
console.log(from, to);
|
|
return next();
|
|
}
|