8 lines
132 B
Go
8 lines
132 B
Go
package handlers
|
|
|
|
import "net/http"
|
|
|
|
func Me(w http.ResponseWriter, r *http.Request) {
|
|
respond(w, http.StatusOK, userFromCtx(r))
|
|
}
|