AX Docs a gogo

Document every single thing your software could ever do ahead of time, so your app never even has to run at all.

devices.go
devices.ts
devices.py
func GetDeviceListItems(brudi *brudi.Client,
ctx context.Context, team string) ([]Device, error) {
list, err := brudi.Ops().Devices(team)
.List(ctx, ListOptions{})
if err != nil {
return nil, err
}
return list.Items, nil
}

AX Kit Docs

AX HUI is a React implementation of the old brudi/AX design system.