mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
26 lines
275 B
Go
26 lines
275 B
Go
package statistics
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func MessagesStatistics(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func UsersStatistics(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func GroupsStatistics(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func GetActiveUser(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func GetActiveGroup(c *gin.Context) {
|
|
|
|
}
|