-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconst.go
35 lines (33 loc) · 1.44 KB
/
const.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package main
import "fmt"
var (
startMessage = `
__ ______ __ ______
/ | / \ / | / |
______ ______ ______ _$$ |_ ______ /$$$$$$ |$$ | $$$$$$/
/ \ / \ / \ / $$ | / \ $$ | $$/ $$ | $$ |
/$$$$$$ |/$$$$$$ |/$$$$$$ |$$$$$$/ $$$$$$ |$$ | $$ | $$ |
$$ | $$ |$$ | $$ |$$ | $$/ $$ | __ / $$ |$$ | __ $$ | $$ |
$$ |__$$ |$$ \__$$ |$$ | $$ |/ |/$$$$$$$ |$$ \__/ |$$ |_____ _$$ |_
$$ $$/ $$ $$/ $$ | $$ $$/ $$ $$ |$$ $$/ $$ |/ $$ |
$$$$$$$/ $$$$$$/ $$/ $$$$/ $$$$$$$/ $$$$$$/ $$$$$$$$/ $$$$$$/
$$ |
$$ |
$$/
Thank you for using PortaCLI.
Authors:
godande
MaxUNof
Donate BTC: 36MQNEv8vkXgVuTa8HS1aJYzFTsuCmwNBK
`
usage = func() {
fmt.Println(`Usage:
-f = Path to your photo/video | Default: img.jpg in your current folder
-o = Change output destination with filename | Default: img_portacli.jpg/img_portacli.mp4 in your current folder
-v = Create video portrait
-collage = Collage mode (only with photo)
Example usages:
portacli -f /home/user/myphoto.jpg -o /home/user/outphoto.jpg
portacli -f /home/user/myphoto.jpg -v`)
}
)