**WORK IN PROGRESS** golang API client for interacting with the jschan imageboard API.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
364 B

package models
type CustomPage struct {
Board string `json:"board"`
Page string `json:"page"`
Title string `json:"title"`
Message RawAndMarkdownMessage `json:"message"`
Date ScuffedTime `json:"date"`
Edited interface{} `json:"edited"`
ID string `json:"_id"`
}