mirror of
https://github.com/DeBrosOfficial/network.git
synced 2026-01-30 14:33:03 +00:00
11 lines
216 B
Go
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)
|
|
}
|