18F/e-QIP-prototype

View on GitHub
api/xml.go

Summary

Maintainability
A
0 mins
Test Coverage
package api

import "html/template"

// XMLService represents a basic interface to XML related functionality.
type XMLService interface {
    PackageXML(app Application) (template.HTML, error)
}