mirror of
https://github.com/CyberL1/dlinux-dashboard.git
synced 2025-04-03 06:28:37 -04:00
13 lines
458 B
TypeScript
13 lines
458 B
TypeScript
import type { Container } from "#src/types/Container.ts";
|
|
import { getContainer, getContainerResponse } from "#src/utils/containers.ts";
|
|
import type { FastifyInstance, FastifyRequest } from "fastify";
|
|
|
|
export default (fastify: FastifyInstance) => {
|
|
fastify.put("/", async (req: FastifyRequest<{ Params: Container }>) => {
|
|
const container = getContainer(req.params.id);
|
|
|
|
await container.start();
|
|
return getContainerResponse(container);
|
|
});
|
|
};
|