Skip to content

Commit

Permalink
Add plesk command
Browse files Browse the repository at this point in the history
  • Loading branch information
sibprogrammer committed Jun 5, 2021
1 parent bf04915 commit f8f2fe0
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
18 changes: 18 additions & 0 deletions cmd/plesk.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package cmd

import (
"fmt"
"github.com/spf13/cobra"
)

var pleskCmd = &cobra.Command{
Use: "plesk",
Hidden: true,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println(" ____ _ _ _\n" +
" | _ \\ | | ___ ___ | | __ | |\n" +
" | |_) | | | / _ \\ / __| | |/ / | |\n" +
" | __/ | | | __/ \\__ \\ | < |_|\n" +
" |_| |_| \\___| |___/ |_|\\_\\ (_)")
},
}
1 change: 1 addition & 0 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ func Execute() error {
sshCmd,
webCmd,
completionCmd,
pleskCmd,
)

return rootCmd.Execute()
Expand Down

0 comments on commit f8f2fe0

Please sign in to comment.