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

32 lines
530 B

package jschan
import (
"context"
"fmt"
"jschan/app/models"
"net/http"
)
type GetGlobalSettingsResponse struct {
*models.GlobalSettings
}
func (c *Client) GetGlobalSettings(ctx context.Context) (*CatalogResponse, error) {
url := fmt.Sprintf("%s/settings.json", c.BaseURL)
req, err := http.NewRequest(http.MethodGet, url, nil)
if err != nil {
return nil, err
}
req = req.WithContext(ctx)
res := CatalogResponse{}
if err := c.sendRequest(req, &res, nil); err != nil {
return nil, err
}
return &res, nil
}