aboutsummaryrefslogtreecommitdiff
path: root/cmd/main.go
blob: a0c429b7eb1be069db55749222eacccbd934341f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package main

import (
	"log"

	"github.com/mammothbane/thulani-go"
)

func main() {
	conf, err := thulani.LoadConfig("config.yml")
	if err != nil {
		log.Fatal(err)
	}

	thulani.Run(conf)
}