fulldump/golax

View on GitHub
doc.go

Summary

Maintainability
A
0 mins
Test Coverage
package golax

// Doc represents documentation information that can be attached to a node,
// method or interceptor.
type Doc struct {
    Name        string
    Description string
    Ommit       bool
}