11 lines
241 B
TypeScript
11 lines
241 B
TypeScript
import {FastifyRequest, FastifyReply} from 'fastify'
|
|
|
|
export async function startModel(req: FastifyRequest, res: FastifyReply): Promise<void> {
|
|
|
|
|
|
}
|
|
|
|
export async function stopModel(req: FastifyRequest, res: FastifyReply): Promise<void> {
|
|
|
|
|
|
} |