mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2025-12-13 09:28:14 +08:00
18 lines
298 B
TypeScript
18 lines
298 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;
|