mirror of
https://gitee.com/lauix/HFish
synced 2025-05-12 21:08:01 +08:00
11 lines
145 B
Go
11 lines
145 B
Go
|
package colony
|
||
|
|
||
|
import (
|
||
|
"github.com/gin-gonic/gin"
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
func Html(c *gin.Context) {
|
||
|
c.HTML(http.StatusOK, "colony.html", gin.H{})
|
||
|
}
|