mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-12-25 17:16:33 +08:00
11 lines
410 B
TypeScript
11 lines
410 B
TypeScript
import Api from './Api'
|
|
|
|
export default {
|
|
login: Api.newPost("/sys/accounts/login"),
|
|
changePwd: Api.newPost("/sys/accounts/change-pwd"),
|
|
getPublicKey: Api.newGet("/common/public-key"),
|
|
getConfigValue: Api.newGet("/sys/configs/value"),
|
|
captcha: Api.newGet("/sys/captcha"),
|
|
logout: Api.newPost("/sys/accounts/logout/{token}"),
|
|
getPermissions: Api.newGet("/sys/accounts/permissions")
|
|
} |