/**
 * shortsSlice — re-exports clipsSlice under the CLAUDE.md name "shorts".
 * The backend calls them "clips" but the app page is /shorts.
 * All logic lives in clipsSlice; this file keeps the CLAUDE.md slice naming intact.
 */
export {
  fetchClips as fetchShorts,
  setFilter as setShortsFilter,
  selectClips as selectShorts,
  selectClipsLoading as selectShortsLoading,
  selectClipsHasMore as selectShortsHasMore,
  selectClipsPage as selectShortsPage,
  selectClipsFilter as selectShortsFilter,
  selectClipsTotal as selectShortsTotal,
} from "./clipsSlice";

export { default } from "./clipsSlice";
