Y
Hacker News
new
|
ask
|
show
|
jobs
by
nih0
1526 days ago
correct me if im wrong but lowercase struct fields do not get exported right ?
3 comments
crypt0lution
1526 days ago
Made a push adding getters for relevant fields and making field names uppercase in the Options struct. Don't know how long it takes for pkg.dev to update, but the issue should be resolved now.
link
dmitshur
1526 days ago
Yeah. A good place to see just the exported API (and its documentation) is
https://pkg.go.dev/github.com/AlexEidt/Vidio
.
link
kmlx
1526 days ago
that’s correct:
https://go.dev/ref/spec#Exported_identifiers
link