inital working commit

This commit is contained in:
2024-04-20 10:33:41 -04:00
commit 1afe0716f5
17 changed files with 1179 additions and 0 deletions

19
printer/printer.go Normal file
View File

@@ -0,0 +1,19 @@
package printer
import (
"fmt"
)
var Version = "0.0.0"
type Printer struct {
}
func NewPrinter() *Printer {
return &Printer{}
}
func (p *Printer) PrintTitle() {
fmt.Println(p.getBright().Render(fmt.Sprintf("RSA File Encryption Tool %s", Version)))
fmt.Println()
}