12 lines
199 B
Go
12 lines
199 B
Go
package main
|
|
|
|
import (
|
|
"git.tek.govt.hu/dowerx/szoe-pontok/api"
|
|
"git.tek.govt.hu/dowerx/szoe-pontok/config"
|
|
)
|
|
|
|
func main() {
|
|
cfg := config.GetConfig()
|
|
api.Listen(cfg.API.Address, cfg.API.Path)
|
|
}
|