odtool / api /setup.go
bot
εˆε§‹εŒ–
9f6f5a5
raw
history blame contribute delete
185 Bytes
package api
import (
"github.com/gin-gonic/gin"
)
func Setup(g *gin.RouterGroup) {
g.POST("/onedrive/get_refresh_token", onedriveToken)
g.POST("/onedrive/get_site_id", spSiteID)
}