mirror of
https://github.com/snapp-incubator/pakhshi.git
synced 2025-09-26 20:21:13 +08:00
feat: Add Pakhshi cmd
This commit is contained in:
20
cmd/pakhshi/main.go
Normal file
20
cmd/pakhshi/main.go
Normal file
@@ -0,0 +1,20 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"github.com/1995parham/pakhshi/internal/cmd"
|
||||
"github.com/pterm/pterm"
|
||||
)
|
||||
|
||||
func main() {
|
||||
if err := pterm.DefaultBigText.WithLetters(
|
||||
pterm.NewLettersFromStringWithStyle("Pa", pterm.NewStyle(pterm.FgCyan)),
|
||||
pterm.NewLettersFromStringWithStyle("kh", pterm.NewStyle(pterm.FgLightMagenta)),
|
||||
pterm.NewLettersFromStringWithStyle("shi", pterm.NewStyle(pterm.FgLightRed)),
|
||||
).Render(); err != nil {
|
||||
_ = err
|
||||
}
|
||||
|
||||
pterm.Description.Println("One Client to Rule Them All")
|
||||
|
||||
cmd.Execute()
|
||||
}
|
Reference in New Issue
Block a user