| 12345678910111213141516171819202122232425 |
- package web
- import (
- "Gwen/global"
- "github.com/gin-gonic/gin"
- )
- type Index struct {
- }
- func (i *Index) Index(c *gin.Context) {
- c.Redirect(302, "/_admin/")
- }
- func (i *Index) ConfigJs(c *gin.Context) {
- apiServer := global.Config.Rustdesk.ApiServer
- tmp := `
- localStorage.setItem('api-server', "` + apiServer + `")
- const ws2_prefix = 'wc-'
- localStorage.setItem(ws2_prefix+'api-server', "` + apiServer + `")
- `
- c.String(200, tmp)
- }
|