Files
cloud/internal/logic/index.go

15 lines
243 B
Go
Raw Normal View History

2025-12-26 22:35:18 +08:00
package logic
import (
"github.com/gin-gonic/gin"
)
func Index(c *gin.Context) {
data := gin.H{
"Title": "Welcome to " + c.Request.Host,
"Message": "This is " + c.Request.Host + " index page.",
}
2025-12-29 12:51:54 +08:00
c.HTML(200, "index.html", data)
2025-12-26 22:35:18 +08:00
}