Skip to content

Commit

Permalink
ci: Generate docs
Browse files Browse the repository at this point in the history
  • Loading branch information
seambot committed Oct 11, 2024
1 parent edc32e8 commit 0f19aa4
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
7 changes: 6 additions & 1 deletion docs/api/acs/systems/get.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,12 @@ import api "github.com/seamapi/go"
import systems "github.com/seamapi/go/systems"

func main() {
client.Acs.Systems.Get(context.Background(), systems.SystemsGetRequest{AcsSystemId: api.String("8d7e0b3a-b889-49a7-9164-4b71a0506a33")})
client.Acs.Systems.Get(
context.Background(),
systems.SystemsGetRequest{
AcsSystemId: api.String("8d7e0b3a-b889-49a7-9164-4b71a0506a33"),
},
)
}
```

Expand Down
7 changes: 6 additions & 1 deletion docs/api/acs/systems/list.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,12 @@ import api "github.com/seamapi/go"
import systems "github.com/seamapi/go/systems"

func main() {
client.Acs.Systems.List(context.Background(), systems.SystemsListRequest{ConnectedAccountId: api.String("123e4567-e89b-12d3-a456-426614174000")})
client.Acs.Systems.List(
context.Background(),
systems.SystemsListRequest{
ConnectedAccountId: api.String("123e4567-e89b-12d3-a456-426614174000"),
},
)
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,12 @@ import api "github.com/seamapi/go"
import systems "github.com/seamapi/go/systems"

func main() {
client.Acs.Systems.ListCompatibleCredentialManagerAcsSystems(context.Background(), systems.SystemsListCompatibleCredentialManagerAcsSystemsRequest{AcsSystemId: api.String("8d7e0b3a-b889-49a7-9164-4b71a0506a33")})
client.Acs.Systems.ListCompatibleCredentialManagerAcsSystems(
context.Background(),
systems.SystemsListCompatibleCredentialManagerAcsSystemsRequest{
AcsSystemId: api.String("8d7e0b3a-b889-49a7-9164-4b71a0506a33"),
},
)
}
```

Expand Down

0 comments on commit 0f19aa4

Please sign in to comment.