mirror of
https://github.com/NeteaseCloudMusicApiEnhanced/api-enhanced.git
synced 2026-08-12 08:50:38 +00:00
12 lines
316 B
TypeScript
12 lines
316 B
TypeScript
import { banner, lyric } from '@neteasecloudmusicapienhanced/api'
|
|
import type { Response } from '@neteasecloudmusicapienhanced/api'
|
|
import logger from '../util/logger.js'
|
|
banner({ type: 0 }).then((res: Response) => {
|
|
logger.info(res)
|
|
})
|
|
lyric({
|
|
id: '33894312',
|
|
}).then((res: Response) => {
|
|
logger.info(res)
|
|
})
|