import { isAdmin } from '../../utils/auth' export default defineEventHandler((event) => { return { admin: isAdmin(event) } })