**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.
 
 

15 lines
384 B

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