...

Source file src/jschan/app/models/custompage.go

Documentation: jschan/app/models

     1  package models
     2  
     3  type CustomPage struct {
     4  	Board   string                `json:"board"`
     5  	Page    string                `json:"page"`
     6  	Title   string                `json:"title"`
     7  	Message RawAndMarkdownMessage `json:"message"`
     8  	Date    ScuffedTime           `json:"date"`
     9  	Edited  interface{}           `json:"edited"`
    10  	ID      string                `json:"_id"`
    11  }
    12  

View as plain text