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

24 lines (23 loc) 851 B
import { KotlinBackendGenerator } from './kotlin-base-generator'; export declare class SpringBootGenerator extends KotlinBackendGenerator { constructor(); protected getFrameworkPlugins(): string; protected getFrameworkDependencies(): string; protected getFrameworkTasks(): string; protected generateFrameworkFiles(projectPath: string, options: any): Promise<void>; private generateApplication; private generateConfiguration; private generateControllers; private generateServices; private generateRepositories; private generateEntities; private generateDtos; private generateSecurity; private generateExceptions; private generateWebSocket; private generateGraphQL; private generateUtils; private generateResources; private generateTests; } export default SpringBootGenerator;