UNPKG

@re-shell/cli

Version:

Full-stack development platform uniting microservices and microfrontends. Build complete applications with .NET (ASP.NET Core Web API, Minimal API), Java (Spring Boot, Quarkus, Micronaut, Vert.x), Rust (Actix-Web, Warp, Rocket, Axum), Python (FastAPI, Dja

18 lines (17 loc) 532 B
import { ProgressSpinner } from '../utils/spinner'; interface AddBackendOptions { template?: string; port?: string; description?: string; list?: boolean; useCase?: string; spinner?: ProgressSpinner; } /** * Adds a new backend microservice to an existing Re-Shell project * * @param name - Name of the backend service * @param options - Additional options for backend service creation */ export declare function addBackend(name: string | undefined, options: AddBackendOptions): Promise<void>; export {};