Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { creativeArtsBlogs } from './creative-arts';
import { industryBlogs } from './industry';
import { lifestyleBlogs } from './lifestyle';
import { societyBlogs } from './society';
import { technologyBlogs } from './technology';
export const curatedBlogs = {
...lifestyleBlogs,
...technologyBlogs,
...creativeArtsBlogs,
...societyBlogs,
...industryBlogs,
};
export type CuratedBlog = {
feed_ID: number;
site_ID: number;
site_URL: string;
site_name: string;
};
export type CuratedBlogsList = Record< string, CuratedBlog[] >;