11 lines
177 B
JavaScript
11 lines
177 B
JavaScript
export function getSecret(type, path, isPublic) {
|
|
return request({
|
|
url: '/getSecret',
|
|
headers: {
|
|
isToken: false
|
|
},
|
|
method: 'post',
|
|
data: type
|
|
})
|
|
}
|