Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • v1.1.1
  • v1.1.0
  • v1.0.0
4 results

main.go

Blame
  • main.go 286 B
    package main
    
    import (
    	"git.sch.bme.hu/blintmester/keresett-a-feri/data"
    	"git.sch.bme.hu/blintmester/keresett-a-feri/web"
    	"log"
    	"math/rand"
    	"time"
    )
    
    func main() {
    	rand.Seed(time.Now().UnixNano())
    	data.ReadFile()
    
    	e := web.Router.Run(":8080")
    	if e != nil {
    		log.Fatal(e)
    	}
    }