Prettier everything, remove vendored bootstrap

These are installed now via pnpm
This commit is contained in:
Eli Ribble 2026-03-21 19:41:51 +00:00
parent 004a49c4e4
commit 5779242f22
No known key found for this signature in database
122 changed files with 297 additions and 13665 deletions

View file

@ -11,11 +11,11 @@ import (
// Client represents a Label Studio API client
type Client struct {
BaseURL string
APIKey string
AccessToken string
BaseURL string
APIKey string
AccessToken string
AccessTokenExpires time.Time
HTTPClient *http.Client
HTTPClient *http.Client
}
// NewClient creates a new Label Studio client
@ -124,6 +124,5 @@ func (c *Client) makeRequest(method string, path string, payload []byte) (*http.
return nil, fmt.Errorf("API returned error status %d: %s: ", resp.Status, bodyString)
}
return resp, nil
}