restart.go 214 B

12345678910111213141516
  1. package system
  2. import (
  3. "net/http"
  4. "code.pfad.fr/risefront"
  5. "github.com/gin-gonic/gin"
  6. )
  7. func Restart(c *gin.Context) {
  8. risefront.Restart()
  9. c.JSON(http.StatusOK, gin.H{
  10. "message": "restarting...",
  11. })
  12. }