mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-26 11:36:44 +08:00
25 lines
512 B
Go
25 lines
512 B
Go
package admin
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// register
|
|
func UserLogin(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{"message": "someJSON", "status": 200})
|
|
}
|
|
|
|
func UserRegister(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{"message": "someJSON", "status": 200})
|
|
}
|
|
|
|
func GetUserSettings(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{"message": "someJSON", "status": 200})
|
|
}
|
|
|
|
func AlterUserSettings(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{"message": "someJSON", "status": 200})
|
|
}
|