components/smwtplformatter.go
package components import "fmt" exported type SMWTemplateCallFormatter should have comment or be unexportedtype SMWTemplateCallFormatter struct { InWikiPage chan *WikiPage OutWikiPageXML chan string} exported function NewSMWTemplateCallFormatter should have comment or be unexportedfunc NewSMWTemplateCallFormatter() *SMWTemplateCallFormatter { return &SMWTemplateCallFormatter{ InWikiPage: make(chan *WikiPage, BUFSIZE), OutWikiPageXML: make(chan string, BUFSIZE), }} exported method SMWTemplateCallFormatter.Run should have comment or be unexportedfunc (p *SMWTemplateCallFormatter) Run() { fmt.Println("Running SMWTemplateCallFormatter ...")}