mirror of
https://github.com/ourongxing/newsnow.git
synced 2025-01-19 11:19:14 +08:00
31 lines
644 B
TypeScript
31 lines
644 B
TypeScript
import type { Metadata } from "./types"
|
|
|
|
export const sectionIds = ["focus", "social", "china", "world", "tech", "code"] as const
|
|
|
|
export const metadata: Metadata = {
|
|
focus: {
|
|
name: "关注",
|
|
sources: [],
|
|
},
|
|
social: {
|
|
name: "实时",
|
|
sources: ["weibo", "douyin", "zhihu", "toutiao", "wallstreetcn", "ithome", "36kr"],
|
|
},
|
|
china: {
|
|
name: "国内",
|
|
sources: ["peopledaily", "toutiao", "zhihu"],
|
|
},
|
|
world: {
|
|
name: "国外",
|
|
sources: ["aljazeeracn", "sputniknewscn", "zaobao"],
|
|
},
|
|
code: {
|
|
name: "代码",
|
|
sources: ["v2ex"],
|
|
},
|
|
tech: {
|
|
name: "科技",
|
|
sources: ["ithome"],
|
|
},
|
|
}
|