szoe-pontok/main.go

12 lines
199 B
Go
Raw Permalink Normal View History

2024-10-10 15:34:48 +00:00
package main
2024-10-10 18:22:03 +00:00
import (
"git.tek.govt.hu/dowerx/szoe-pontok/api"
"git.tek.govt.hu/dowerx/szoe-pontok/config"
)
2024-10-10 15:34:48 +00:00
2024-10-10 18:22:03 +00:00
func main() {
cfg := config.GetConfig()
api.Listen(cfg.API.Address, cfg.API.Path)
2024-10-10 15:34:48 +00:00
}