Add func find on Login
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user