Add func find on Login

This commit is contained in:
Archer Fox
2025-03-16 23:52:59 +03:00
parent 4b10367196
commit e6340bd24f
2 changed files with 28 additions and 10 deletions

View File

@@ -2,10 +2,12 @@ package account
import (
"errors"
"github.com/fatih/color"
"fmt"
"math/rand/v2"
"net/url"
"time"
"github.com/fatih/color"
)
var letterRunes = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGIJKLMNOPQRSTUVWXYZ1234567890-*!?()#$%&")
@@ -20,7 +22,8 @@ type Account struct {
// метод вывода пароля
func (acc *Account) Output() {
c := color.New(color.FgRed, color.Italic, color.Bold)
c := color.New(color.FgRed, color.Bold)
fmt.Println()
c.Printf("password: %v\nlogin: %v\nURL: %v\n", acc.Password, acc.Login, acc.Url)
}