13 lines
388 B
TypeScript
Executable file
13 lines
388 B
TypeScript
Executable file
/**
|
|
* @lilith/msw-handlers
|
|
*
|
|
* Platform-level MSW request handlers and setup utilities.
|
|
* Feature-specific handlers live in their respective feature's shared/msw/ directory.
|
|
*
|
|
* Platform handlers: notifications, ntfy, websites
|
|
* Feature handlers: see features/{feature}/shared/msw/
|
|
*/
|
|
|
|
export * from './handlers'
|
|
export * from './data'
|
|
export { composeHandlers } from './compose'
|