px / utils /imageShow.go
caidaohz's picture
init
464d634
raw
history blame contribute delete
147 Bytes
package utils
import "fmt"
func ImageShow(index int, modelName, url string) string {
index++
return fmt.Sprintf("![%s](%s)", modelName, url)
}