mirror of
https://github.com/simon987/task_tracker.git
synced 2025-04-10 14:06:43 +00:00
19 lines
267 B
Go
19 lines
267 B
Go
package main
|
|
|
|
import (
|
|
"github.com/simon987/task_tracker/api"
|
|
"github.com/simon987/task_tracker/config"
|
|
"math/rand"
|
|
"time"
|
|
)
|
|
|
|
func main() {
|
|
|
|
rand.Seed(time.Now().UTC().UnixNano())
|
|
config.SetupConfig()
|
|
|
|
webApi := api.New()
|
|
webApi.SetupLogger()
|
|
webApi.Run()
|
|
}
|