mirror of
https://github.com/ialley-workshop-open/uni-halo.git
synced 2025-05-19 10:00:13 +09:00
16 lines
279 B
JavaScript
16 lines
279 B
JavaScript
/**
|
|
* 博主信息
|
|
* @see https://api.halo.run/content-api.html#tag/user-controller
|
|
*/
|
|
|
|
import HttpHandler from '@/common/http/request.js'
|
|
|
|
export default {
|
|
/**
|
|
* 获取博主信息
|
|
*/
|
|
getBloggerInfo: () => {
|
|
return HttpHandler.Get(`/api/content/users/profile`)
|
|
},
|
|
}
|