13 lines
167 B
Go
13 lines
167 B
Go
|
package ui
|
||
|
|
||
|
import (
|
||
|
"github.com/gin-gonic/gin"
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
func getProfile(c *gin.Context) {
|
||
|
c.HTML(http.StatusOK, "profile", gin.H{
|
||
|
"title": "Profile",
|
||
|
})
|
||
|
}
|