Files
Harry 92dfaab6fc refactor: restructure dify CLI command handling
- 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.
2025-12-30 12:51:20 +08:00

8 lines
121 B
Go

package main
import "github.com/langgenius/dify-plugin-daemon/cmd/dify_cli/command"
func main() {
command.Execute()
}