kodflow/kitsune

View on GitHub
src/cmd/kitsune/build.go

Summary

Maintainability
A
0 mins
Test Coverage
package kitsune

import (
    "fmt"

    "github.com/spf13/cobra"
)

var buildCmd = &cobra.Command{
    Use:     "build",
    Short:   "Build project",
    GroupID: "project",
    Run: func(cmd *cobra.Command, args []string) {
        // Logic for build command
        fmt.Println("Building the microservice project...")
    },
}