summaryrefslogtreecommitdiffhomepage
path: root/main.go
blob: cfd70f8029badd24b89957c74b4a6499975419c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package main

import (
	"log"
	"os"

	"github.com/kujtimiihoxha/termai/cmd"
)

func main() {
	// Create a log file and make that the log output DEBUG
	// TODO: remove this on release
	logfile, err := os.OpenFile("debug.log", os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0o666)
	if err != nil {
		panic(err)
	}

	log.SetOutput(logfile)

	cmd.Execute()
}