package controllers type loginRequest struct { Email string `form:"email"` Password string `form:"password"` Remember bool `form:"remember"` } type registerRequest struct { Username string `form:"username"` Email string `form:"email"` Password string `form:"password"` Password2 string `form:"password2"` } type topicRequest struct { Parent int `form:"parent"` Topic string `form:"topic"` Text string `form:"text"` } type postRequest struct { Parent int `form:"parent"` Text string `form:"text"` }