6 lines
183 B
TypeScript
6 lines
183 B
TypeScript
|
|
import { withAuth, withPermission } from '@/lib/api/helpers';
|
||
|
|
|
||
|
|
import { postHandler } from './handlers';
|
||
|
|
|
||
|
|
export const POST = withAuth(withPermission('berths', 'edit', postHandler));
|