1
- # Lattice SDK Go library
1
+ # Anduril Go Library
2
2
3
3
![ ] ( https://www.anduril.com/lattice-sdk/ )
4
4
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 APIs from Go.
6
8
7
9
## Documentation
8
10
@@ -37,7 +39,7 @@ import (
37
39
client " github.com/anduril/lattice-sdk-go/v2/client"
38
40
option " github.com/anduril/lattice-sdk-go/v2/option"
39
41
context " context"
40
- Lattice " github.com/anduril/lattice-sdk-go/v2"
42
+ v2 " github.com/anduril/lattice-sdk-go/v2"
41
43
)
42
44
43
45
func do () {
@@ -48,7 +50,7 @@ func do() {
48
50
)
49
51
client.Entities .LongPollEntityEvents (
50
52
context.TODO (),
51
- &Lattice .EntityEventRequest {
53
+ &v2 .EntityEventRequest {
52
54
SessionToken: " sessionToken" ,
53
55
},
54
56
)
@@ -162,3 +164,13 @@ defer cancel()
162
164
163
165
response , err := client.Entities .LongPollEntityEvents (ctx, ...)
164
166
```
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