import * as authentication from '@feathersjs/authentication' const { authenticate } = authentication.hooks export default { before: { all: [authenticate('jwt')], find: [], get: [], create: [], update: [], patch: [], remove: [] }, after: { all: [], find: [], get: [], create: [], update: [], patch: [], remove: [] }, error: { all: [], find: [], get: [], create: [], update: [], patch: [], remove: [] } }