You've already forked img-proxy-url-generator
Initial working commit
This commit is contained in:
19
printer/printer.go
Normal file
19
printer/printer.go
Normal 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()
|
||||
}
|
||||
Reference in New Issue
Block a user