mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2026-05-07 22:41:41 +08:00
17 lines
214 B
Go
17 lines
214 B
Go
package system
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"code.pfad.fr/risefront"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func Restart(c *gin.Context) {
|
|
risefront.Restart()
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"message": "restarting...",
|
|
})
|
|
}
|