mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2026-03-27 05:49:45 +08:00
13 lines
284 B
TypeScript
13 lines
284 B
TypeScript
/**
|
|
* @file plugins/Bili/index.ts
|
|
* @description Bili插件
|
|
* @since Beta v0.4.0
|
|
*/
|
|
|
|
import getVideoUrl from "./request/getVideoUrl.js";
|
|
import getVideoView from "./request/getVideoView.js";
|
|
|
|
const Bili = { video: { view: getVideoView, url: getVideoUrl } };
|
|
|
|
export default Bili;
|