Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 399 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 399 Bytes

front-go

API wrapper for the Front Public API.

USAGE

client, err := front.NewClientWithResponses(
  "https://api2.frontapp.com/",
  front.WithAuthorizationToken("<YOUR_AUTH_TOKEN>"),
)
if err != nil {
  // ...
}

response, err := client.ListAccountsWithResponse(context.Background())
if err == nil && response.JSON200 != nil {
  // ...
}

LICENSE

MIT