mirror of
https://github.com/NeteaseCloudMusicApiEnhanced/api-enhanced.git
synced 2025-10-22 06:03:09 +00:00
11 lines
222 B
TypeScript
11 lines
222 B
TypeScript
import { banner, lyric } from '@neteaseapireborn/api'
|
|
import { logger } from '../util/logger.js'
|
|
banner({ type: 0 }).then((res) => {
|
|
logger.info(res)
|
|
})
|
|
lyric({
|
|
id: '33894312',
|
|
}).then((res) => {
|
|
logger.info(res)
|
|
})
|