mirror of
https://github.com/xvzc/SpoofDPI.git
synced 2025-01-04 13:24:46 +00:00
19 lines
531 B
Go
19 lines
531 B
Go
package util
|
|
|
|
import (
|
|
"github.com/pterm/pterm"
|
|
"github.com/xvzc/SpoofDPI/config"
|
|
)
|
|
|
|
func PrintWelcome() {
|
|
cyan := pterm.NewLettersFromStringWithStyle("Spoof", pterm.NewStyle(pterm.FgCyan))
|
|
purple := pterm.NewLettersFromStringWithStyle("DPI", pterm.NewStyle(pterm.FgLightMagenta))
|
|
pterm.DefaultBigText.WithLetters(cyan, purple).Render()
|
|
|
|
pterm.DefaultBulletList.WithItems([]pterm.BulletListItem{
|
|
{Level: 0, Text: "PORT : " + config.GetConfig().Port},
|
|
{Level: 0, Text: "DNS : " + config.GetConfig().DNS},
|
|
}).Render()
|
|
|
|
}
|