25 lines
635 B
TypeScript
25 lines
635 B
TypeScript
import { v4 as uuidv4 } from 'uuid'
|
|
|
|
export interface Item {
|
|
id: string
|
|
channelName: string
|
|
channelUrl: string
|
|
}
|
|
|
|
export const channels: Item[] = [
|
|
{
|
|
id: uuidv4(),
|
|
channelName: 'fliggy',
|
|
channelUrl: 'https://hotel.fliggy.com/ebooking/hotelBaseInfoUv.htm#/ebk/homeV1',
|
|
},
|
|
{
|
|
id: uuidv4(),
|
|
channelName: 'meituan',
|
|
channelUrl: 'https://me.meituan.com/ebooking/merchant/product#/index',
|
|
},
|
|
{
|
|
id: uuidv4(),
|
|
channelName: 'douyin',
|
|
channelUrl: 'https://life.douyin.com/p/goods_winetour/physical_room_list?groupid=1816249020842116',
|
|
}
|
|
] |