9 lines
227 B
Go
9 lines
227 B
Go
package html2pdf
|
|
|
|
import "gitea.tecamino.com/paadi/html2pdf/converter"
|
|
|
|
func Convert(chromePath, inputFile, outputFile string) error {
|
|
c := converter.NewConverter(chromePath)
|
|
return c.Convert(inputFile, outputFile)
|
|
}
|