Files
open-im-server/internal/cms_api/statistics/statistics.go
T

26 lines
275 B
Go
Raw Normal View History

2022-01-21 18:39:57 +08:00
package statistics
import (
"github.com/gin-gonic/gin"
)
func MessagesStatistics(c *gin.Context) {
2022-01-24 01:40:49 +08:00
2022-01-21 18:39:57 +08:00
}
func UsersStatistics(c *gin.Context) {
2022-01-24 01:40:49 +08:00
2022-01-21 18:39:57 +08:00
}
func GroupsStatistics(c *gin.Context) {
2022-01-24 01:40:49 +08:00
2022-01-21 18:39:57 +08:00
}
func GetActiveUser(c *gin.Context) {
2022-01-24 01:40:49 +08:00
2022-01-21 18:39:57 +08:00
}
func GetActiveGroup(c *gin.Context) {
2022-01-24 01:40:49 +08:00
2022-01-21 18:39:57 +08:00
}