Reputation: 2887
We are using godoc
to our lib and we saw all the public method in the doc as expected.
My questions are:
If there is a way to remove from the doc public method without making them private? with some annotation maybe?
If I provide package and in the package there is more then one file and I want to expose in the doc only fileA.go
and not C.go
, D.go
, etc, is it possible?
Upvotes: 0
Views: 79
Reputation: 42431
No
No
General rule in Go: No there are no flags, annotations, triggers, whatever. Especially not if not documented.
Upvotes: 1