13 lines
205 B
Go
13 lines
205 B
Go
package handler
|
|
|
|
import "net/http"
|
|
|
|
func DraftMessageHandler(w http.ResponseWriter, r *http.Request) {
|
|
da := MessageItem{
|
|
Id: 1,
|
|
Message: "The Word",
|
|
}
|
|
|
|
RespondWithJSON(w, http.StatusOK, da)
|
|
}
|