...

Source file src/codeberg.org/tslocum/sriracha/model/model_captcha.go

Documentation: codeberg.org/tslocum/sriracha/model

     1  package model
     2  
     3  type CAPTCHA struct {
     4  	IP        string
     5  	Timestamp int64
     6  	Refresh   int
     7  	Image     string
     8  	Text      string
     9  }
    10  

View as plain text