sorubetdesu / utils /imageShow.go
notpok's picture
Upload 21 files
935f06b verified
raw
history blame contribute delete
155 Bytes
package utils
import "fmt"
func ImageShow(index int, modelName, url string) string {
index++
return fmt.Sprintf("![%s](%s)", modelName, url)
}