dkforest

A forum and chat platform (onion)
git clone https://git.dasho.dev/n0tr1v/dkforest.git
Log | Files | Refs | LICENSE

data.go (244B)


      1 package middlewares
      2 
      3 type unauthorizedData struct {
      4 	Message string
      5 }
      6 
      7 type captchaMiddlewareData struct {
      8 	CaptchaDescription string
      9 	CaptchaID          string
     10 	CaptchaImg         string
     11 	CaptchaAnswerImg   string
     12 	ErrCaptcha         string
     13 }