A simple example plugin for jzero that demonstrates basic plugin functionality.
- Display plugin descriptor information (API, Proto, Model files)
- Modular command structure using cobra
# Build the plugin
go build -o jzero-hello main.go
mv jzero-hello $GOBIN# Show help
jzero-hello -h
# Display descriptor information
jzero-hello descThis plugin uses:
- cobra for CLI command structure
- Standard Go libraries for functionality
Same as jzero project