network/pkg/cli/production_commands.go
2026-01-20 10:03:55 +02:00

11 lines
216 B
Go

package cli
import (
"github.com/DeBrosOfficial/network/pkg/cli/production"
)
// HandleProdCommand handles production environment commands
func HandleProdCommand(args []string) {
production.HandleCommand(args)
}