rdfio/rdf2smw

View on GitHub
components/smwtplformatter.go

Summary

Maintainability
A
0 mins
Test Coverage
package components
 
import "fmt"
 
exported type SMWTemplateCallFormatter should have comment or be unexported
type SMWTemplateCallFormatter struct {
InWikiPage chan *WikiPage
OutWikiPageXML chan string
}
 
exported function NewSMWTemplateCallFormatter should have comment or be unexported
func NewSMWTemplateCallFormatter() *SMWTemplateCallFormatter {
return &SMWTemplateCallFormatter{
InWikiPage: make(chan *WikiPage, BUFSIZE),
OutWikiPageXML: make(chan string, BUFSIZE),
}
}
 
exported method SMWTemplateCallFormatter.Run should have comment or be unexported
func (p *SMWTemplateCallFormatter) Run() {
fmt.Println("Running SMWTemplateCallFormatter ...")
}