19 lines
296 B
Go
19 lines
296 B
Go
package controllers
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// @Summary Change account password
|
|
// @Tags Account
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Security JWT
|
|
// @Router /account/changePassword [put]
|
|
func ChangePassword(c *gin.Context) {
|
|
c.Status(http.StatusNotImplemented)
|
|
}
|
|
|