func StartServer(config models.Configuration) { m := martini.Classic() m.Use(render.Renderer()) m.Get("/", func(r render.Render) { stats := stats.GatherStats(config) r.HTML(200, "index", stats) }) m.Run() }
func gatherStats(config models.Configuration) { stats.GatherStats(config) }