mirror of
https://github.com/ConvoyPanel/panel.git
synced 2026-06-11 06:20:47 +08:00
9 lines
237 B
TypeScript
9 lines
237 B
TypeScript
import http from '@/api/http'
|
|
|
|
const mountMedia = (serverUuid: string, mediaUuid: string) => {
|
|
return http.post(
|
|
`/api/client/servers/${serverUuid}/settings/hardware/isos/${mediaUuid}/mount`
|
|
)
|
|
}
|
|
|
|
export default mountMedia |