17 lines
279 B
Go
17 lines
279 B
Go
|
package tmpl
|
||
|
|
||
|
import (
|
||
|
"github.com/gin-gonic/gin"
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
// 首页
|
||
|
func PageDouyin(c *gin.Context) {
|
||
|
c.HTML(http.StatusOK, "douyin_callback.html", gin.H{})
|
||
|
}
|
||
|
|
||
|
// 抖音登录
|
||
|
func PageDouyinLogin(c *gin.Context) {
|
||
|
c.HTML(http.StatusOK, "douyin_login.html", gin.H{})
|
||
|
}
|