mirror of https://github.com/status-im/fathom.git
15 lines
336 B
Go
15 lines
336 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/dannyvankooten/ana/count"
|
|
)
|
|
|
|
// URL: /api/languages
|
|
var GetLanguagesHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
before, after := getRequestedPeriods(r)
|
|
results := count.Languages(before, after, getRequestedLimit(r))
|
|
respond(w, envelope{Data: results})
|
|
})
|