Fix main.go menu

This commit is contained in:
Archie Fox
2025-03-14 18:33:16 +03:00
parent 6da4edff07
commit 3d40ede06d
3 changed files with 33 additions and 32 deletions

View File

@@ -1,9 +1,10 @@
package files
import (
"fmt"
"os"
"password/output"
"github.com/fatih/color"
)
type JsonDb struct {
@@ -36,5 +37,5 @@ func (db *JsonDb) Write(content []byte) {
output.PrintError(err)
return
}
fmt.Println("Файл успешно записан")
color.Green("Файл успешно записан")
}