UNPKG

@naxodev/gonx

Version:

Modern Nx plugin to use Go in a Nx workspace

27 lines (25 loc) 550 B
import { GeneratorSchema } from '../../utils/normalize-options'; export interface GoBlueprintGeneratorSchema extends GeneratorSchema { /** Database drivers to use */ driver: | 'mysql' | 'postgres' | 'sqlite' | 'mongo' | 'redis' | 'scylla' | 'none'; /** Advanced feature to use */ feature?: string[]; /** Framework to use */ framework: | 'chi' | 'gin' | 'fiber' | 'gorilla/mux' | 'httprouter' | 'standard-library' | 'echo'; /** Git to use */ git: 'commit' | 'stage' | 'skip'; }