07_05_GuyT
07_05_GuyT

Reputation: 2887

Using godoc with some annotatinos/filters

We are using godoc to our lib and we saw all the public method in the doc as expected.

My questions are:

  1. If there is a way to remove from the doc public method without making them private? with some annotation maybe?

  2. 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

Answers (1)

Volker
Volker

Reputation: 42431

  1. No

  2. No

General rule in Go: No there are no flags, annotations, triggers, whatever. Especially not if not documented.

Upvotes: 1

Related Questions