jira-bot/pkg/templates/hello.qtpl.go
Andrey Belvedersky 18b2d4e554 template
2021-06-03 01:59:32 +03:00

135 lines
3.5 KiB
Go

// Code generated by qtc from "hello.qtpl". DO NOT EDIT.
// See https://github.com/valyala/quicktemplate for details.
// https://github.com/valyala/quicktemplate
// https://github.com/valyala/quicktemplate
//
//line pkg/templates/hello.qtpl:4
package templates
//line pkg/templates/hello.qtpl:4
import (
"fmt"
"github.com/fatih/color"
telegram "gopkg.in/tucnak/telebot.v2"
)
// Приветствие пользователя
//line pkg/templates/hello.qtpl:12
import (
qtio422016 "io"
qt422016 "github.com/valyala/quicktemplate"
)
//line pkg/templates/hello.qtpl:12
var (
_ = qtio422016.Copy
_ = qt422016.AcquireByteBuffer
)
//line pkg/templates/hello.qtpl:12
func StreamHello(qw422016 *qt422016.Writer, name string) {
//line pkg/templates/hello.qtpl:12
qw422016.N().S(`
Добрый день, *** `)
//line pkg/templates/hello.qtpl:13
qw422016.E().S(name)
//line pkg/templates/hello.qtpl:13
qw422016.N().S(`!***
`)
//line pkg/templates/hello.qtpl:14
}
//line pkg/templates/hello.qtpl:14
func WriteHello(qq422016 qtio422016.Writer, name string) {
//line pkg/templates/hello.qtpl:14
qw422016 := qt422016.AcquireWriter(qq422016)
//line pkg/templates/hello.qtpl:14
StreamHello(qw422016, name)
//line pkg/templates/hello.qtpl:14
qt422016.ReleaseWriter(qw422016)
//line pkg/templates/hello.qtpl:14
}
//line pkg/templates/hello.qtpl:14
func Hello(name string) string {
//line pkg/templates/hello.qtpl:14
qb422016 := qt422016.AcquireByteBuffer()
//line pkg/templates/hello.qtpl:14
WriteHello(qb422016, name)
//line pkg/templates/hello.qtpl:14
qs422016 := string(qb422016.B)
//line pkg/templates/hello.qtpl:14
qt422016.ReleaseByteBuffer(qb422016)
//line pkg/templates/hello.qtpl:14
return qs422016
//line pkg/templates/hello.qtpl:14
}
// Тайтл бота
//line pkg/templates/hello.qtpl:17
func StreamTitle(qw422016 *qt422016.Writer, bot *telegram.User, botVer float64, jira string) {
//line pkg/templates/hello.qtpl:17
qw422016.N().S(`
`)
//line pkg/templates/hello.qtpl:19
d := color.New(color.FgCyan, color.Bold).SprintFunc()
v := fmt.Sprintf("version: ")
v += d("v.", botVer, "\n")
v += fmt.Sprintf("jira: ")
v += d("https://", jira, "\n")
v += fmt.Sprintf("url: " + d(" https://t.me/"+bot.Username))
//line pkg/templates/hello.qtpl:26
qw422016.N().S(`
_ _ _ _
(_|_)_ __ __ _ | |__ ___ | |_
| | | '__/ _`)
//line pkg/templates/hello.qtpl:26
qw422016.N().S("`")
//line pkg/templates/hello.qtpl:26
qw422016.N().S(` | | '_ \ / _ \| __|
| | | | | (_| | | |_) | (_) | |_
_/ |_|_| \__,_| |_.__/ \___/ \__|
|__/
`)
//line pkg/templates/hello.qtpl:34
qw422016.N().S(v)
//line pkg/templates/hello.qtpl:34
qw422016.N().S(`
`)
//line pkg/templates/hello.qtpl:36
}
//line pkg/templates/hello.qtpl:36
func WriteTitle(qq422016 qtio422016.Writer, bot *telegram.User, botVer float64, jira string) {
//line pkg/templates/hello.qtpl:36
qw422016 := qt422016.AcquireWriter(qq422016)
//line pkg/templates/hello.qtpl:36
StreamTitle(qw422016, bot, botVer, jira)
//line pkg/templates/hello.qtpl:36
qt422016.ReleaseWriter(qw422016)
//line pkg/templates/hello.qtpl:36
}
//line pkg/templates/hello.qtpl:36
func Title(bot *telegram.User, botVer float64, jira string) string {
//line pkg/templates/hello.qtpl:36
qb422016 := qt422016.AcquireByteBuffer()
//line pkg/templates/hello.qtpl:36
WriteTitle(qb422016, bot, botVer, jira)
//line pkg/templates/hello.qtpl:36
qs422016 := string(qb422016.B)
//line pkg/templates/hello.qtpl:36
qt422016.ReleaseByteBuffer(qb422016)
//line pkg/templates/hello.qtpl:36
return qs422016
//line pkg/templates/hello.qtpl:36
}