mirror of
https://github.com/langgenius/dify-plugin-daemon.git
synced 2026-07-22 01:35:24 -04:00
92dfaab6fc
- Moved command definitions and execution logic to a new root.go file for better organization. - Simplified main.go by delegating command execution to the new structure. - Enhanced symlink detection for BusyBox-style invocation. This refactor improves code maintainability and clarity in the CLI tool's architecture.
8 lines
121 B
Go
8 lines
121 B
Go
package main
|
|
|
|
import "github.com/langgenius/dify-plugin-daemon/cmd/dify_cli/command"
|
|
|
|
func main() {
|
|
command.Execute()
|
|
}
|