-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.go
37 lines (29 loc) · 791 Bytes
/
main.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
36
37
package main
import (
"fmt"
"math/rand"
"os"
"time"
"github.com/fatih/color"
"github.com/lfaoro/trailblaze/app"
)
var appBanner = fmt.Sprintf(`
* ) ( ( (
) /( ( ) ( )\ ( )\ )\ ) (
( )(_)))( ( /( )\ ((_))((_)((_)( /( ( ))\
(_(_())(()\ )(_))((_) _ ((_)_ _ )(_)) )\ /((_)
|_ _| ((_)((_)_ (_)| | | _ )| |((_)_ ((_)(_))
| | | '_|/ _ | | || | | _ \| |/ _ ||_ // -_)
|_| |_| \__,_| |_||_| |___/|_|\__,_|/__|\___|
github.com/lfaoro/trailblaze
Please note that using this software constitutes
your acceptance of our --terms.
`)
func main() {
rand.Seed(time.Now().UnixNano())
rn := rand.Intn(7) + 30
color.Set(color.Attribute(rn))
fmt.Fprint(os.Stderr, appBanner)
color.Unset()
app.App()
}