about summary refs log blame commit diff stats
path: root/users.go
blob: 7e1f40afa81d6b06a03c7d119b70a55ab2a25e1d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
            








                                                                         
package main

import "net/http"

// Users handles the /<format>/users endpoint.
// Responds with information on the system's users.
func Users(w http.ResponseWriter, r *http.Request, format string) error {

	return nil
}