import type { RestFetcher } from '../../rest.js'

import { createGetAllNotifications } from './get-all.js'
import { createMarkAllAsRead } from './mark-all-as-read.js'

export const createNotificationsRouter = (request: RestFetcher) => {
  return {
    getAll: createGetAllNotifications(request),
    markAllAsRead: createMarkAllAsRead(request),
  }
}
