mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 07:34:45 +02:00
6 lines
204 B
TypeScript
6 lines
204 B
TypeScript
import http from '@/api/http';
|
|
|
|
export default async (uuid: string, image: string): Promise<void> => {
|
|
await http.put(`/api/client/servers/${uuid}/settings/docker-image`, { docker_image: image });
|
|
};
|