ref: 35a34791520f17e4cce5dd372a70d7cd1b5cb6d8
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) } |