Skip to content

Commit ede7714

Browse files
committed
SDK regeneration
1 parent 38ec74d commit ede7714

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

README.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
# Lattice SDK Go library
1+
# Anduril Go Library
22

33
![](https://www.anduril.com/lattice-sdk/)
44

5-
The Lattice SDK Go library provides convenient access to the Lattice API from Go.
5+
[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fanduril%2Flattice-sdk-go)
6+
7+
The Anduril Go library provides convenient access to the Anduril API from Go.
68

79
## Documentation
810

@@ -37,7 +39,7 @@ import (
3739
client "github.com/anduril/lattice-sdk-go/v2/client"
3840
option "github.com/anduril/lattice-sdk-go/v2/option"
3941
context "context"
40-
Lattice "github.com/anduril/lattice-sdk-go/v2"
42+
v2 "github.com/anduril/lattice-sdk-go/v2"
4143
)
4244

4345
func do() {
@@ -48,7 +50,7 @@ func do() {
4850
)
4951
client.Entities.LongPollEntityEvents(
5052
context.TODO(),
51-
&Lattice.EntityEventRequest{
53+
&v2.EntityEventRequest{
5254
SessionToken: "sessionToken",
5355
},
5456
)
@@ -162,3 +164,13 @@ defer cancel()
162164

163165
response, err := client.Entities.LongPollEntityEvents(ctx, ...)
164166
```
167+
168+
## Contributing
169+
170+
While we value open-source contributions to this SDK, this library is generated programmatically.
171+
Additions made directly to this library would have to be moved over to our generation code,
172+
otherwise they would be overwritten upon the next generated release. Feel free to open a PR as
173+
a proof of concept, but know that we will not be able to merge it as-is. We suggest opening
174+
an issue first to discuss with us!
175+
176+
On the other hand, contributions to the README are always very welcome!

0 commit comments

Comments
 (0)