// Code generated by qtc from "error.qtpl". DO NOT EDIT. // See https://github.com/valyala/quicktemplate for details. // Hello is a simple template function. //line pkg/templates/error.qtpl:3 package templates //line pkg/templates/error.qtpl:3 import ( qtio422016 "io" qt422016 "github.com/valyala/quicktemplate" ) //line pkg/templates/error.qtpl:3 var ( _ = qtio422016.Copy _ = qt422016.AcquireByteBuffer ) //line pkg/templates/error.qtpl:3 func StreamError(qw422016 *qt422016.Writer, err string) { //line pkg/templates/error.qtpl:3 qw422016.N().S(` ***Ошибка:*** `) //line pkg/templates/error.qtpl:3 qw422016.N().S("`") //line pkg/templates/error.qtpl:5 qw422016.E().S(err) //line pkg/templates/error.qtpl:5 qw422016.N().S(``) //line pkg/templates/error.qtpl:5 qw422016.N().S("`") //line pkg/templates/error.qtpl:5 qw422016.N().S(` `) //line pkg/templates/error.qtpl:6 } //line pkg/templates/error.qtpl:6 func WriteError(qq422016 qtio422016.Writer, err string) { //line pkg/templates/error.qtpl:6 qw422016 := qt422016.AcquireWriter(qq422016) //line pkg/templates/error.qtpl:6 StreamError(qw422016, err) //line pkg/templates/error.qtpl:6 qt422016.ReleaseWriter(qw422016) //line pkg/templates/error.qtpl:6 } //line pkg/templates/error.qtpl:6 func Error(err string) string { //line pkg/templates/error.qtpl:6 qb422016 := qt422016.AcquireByteBuffer() //line pkg/templates/error.qtpl:6 WriteError(qb422016, err) //line pkg/templates/error.qtpl:6 qs422016 := string(qb422016.B) //line pkg/templates/error.qtpl:6 qt422016.ReleaseByteBuffer(qb422016) //line pkg/templates/error.qtpl:6 return qs422016 //line pkg/templates/error.qtpl:6 }