about summary refs log tree commit diff stats
path: root/internal/endpoints/uptime.go
blob: a50c3e61bb9bc13e7022833e593a7bc8f5c4bbd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package endpoints // import git.tilde.institute/tilde/api/internal/endpoints

import "net/http"

// Uptime handles the /<format>/uptime endpoint.
// Sends uptime and load
func Uptime(w http.ResponseWriter, r *http.Request, format string) error {

	return nil
}