yats.git

ref: 54fdccc6baacf55ef83fbdaa4cd40c2d1eb2d018

server/yats.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
/**
 * Yats - yats
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Paolo Lulli <kevwe.com>
 * @copyright Paolo Lulli 2024
 */

package main

import (
	"os"
	"yats-server/config"
	"yats-server/db"
)

func main() {
	configuration := config.GetConfig(os.Getenv("HOME") + "/.yats.json")
	db.Session = db.InitializeDb(configuration)

	go MaintenanceThread(configuration)

	RestService(configuration)
}