We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b63c3d commit 25e7f6dCopy full SHA for 25e7f6d
main.go
@@ -19,6 +19,15 @@ var (
19
verbose = flag.Bool("verbose", false, "Enable verbose logging in srtla")
20
)
21
22
+var logo = `
23
+ ██████╗ ██████╗ ██╗ ██████╗ ██╗
24
+██╔════╝ ██╔═══██╗ ██║ ██╔══██╗ ██║
25
+██║ ███╗ ██║ ██║ █████╗ ██║ ██████╔╝ ██║
26
+██║ ██║ ██║ ██║ ╚════╝ ██║ ██╔══██╗ ██║
27
+╚██████╔╝ ╚██████╔╝ ██║ ██║ ██║ ███████╗
28
+ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚══════╝
29
+`
30
+
31
func getFreePort() (int, error) {
32
addr, err := net.ResolveUDPAddr("udp", "127.0.0.1:0")
33
if err != nil {
@@ -36,6 +45,8 @@ func getFreePort() (int, error) {
36
45
func main() {
37
46
flag.Parse()
38
47
48
+ log.Print(logo)
49
39
50
if *passphrase != "" && len(*passphrase) < 10 {
40
51
log.Fatalf("Passphrase must be at least 10 characters long")
41
52
}
0 commit comments