package
1.0.0
Repository: https://github.com/bhojpur/iso.git
Documentation: pkg.go.dev

# README

Bhojpur ISO - Extension Framework

It creates Git-like extensions for your Bhojpur ISO projects.

simple Usage

import "github.com/bhojpur/iso/pkg/manager/extensions"

// Detect my-awesome-cli-foo, my-awesome-cli-bar in $PATH and extensiopath1 (relative to the bin)
// it also accepts abspath
exts := extensions.Discover("my-awesome-cli", "extensiopath1", "extensiopath2")

fmt.Println("Detected extensions:", exts)

for _, ex := range exts {
  name := ex.Short()
  cobraCmd := ex.CobraCommand()
}

# Functions

Discover returns extensions found in the paths specified and in PATH Extensions must start with the project tag (e.g.
No description provided by the author

# Structs

No description provided by the author

# Interfaces

No description provided by the author