UNPKG

@naxodev/gonx

Version:

Modern Nx plugin to use Go in a Nx workspace

12 lines (11 loc) 395 B
import { ExecutorContext } from '@nx/devkit'; import { ServeExecutorSchema } from './schema'; /** * This executor runs a Go program using the `go run` command. * * @param options options passed to the executor * @param context context passed to the executor */ export default function runExecutor(options: ServeExecutorSchema, context: ExecutorContext): Promise<{ success: boolean; }>;