11 lines
147 B
Go
11 lines
147 B
Go
|
package routes
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
func usersHandler(w http.ResponseWriter, r *http.Request) {
|
||
|
// TODO:
|
||
|
// - Get current UserID
|
||
|
}
|