mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-07-06 06:04:08 +00:00
Use mattermost v5 module (#1192)
This commit is contained in:
24
vendor/github.com/mattermost/mattermost-server/v5/model/users_stats.go
generated
vendored
Normal file
24
vendor/github.com/mattermost/mattermost-server/v5/model/users_stats.go
generated
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||||
// See LICENSE.txt for license information.
|
||||
|
||||
package model
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"io"
|
||||
)
|
||||
|
||||
type UsersStats struct {
|
||||
TotalUsersCount int64 `json:"total_users_count"`
|
||||
}
|
||||
|
||||
func (o *UsersStats) ToJson() string {
|
||||
b, _ := json.Marshal(o)
|
||||
return string(b)
|
||||
}
|
||||
|
||||
func UsersStatsFromJson(data io.Reader) *UsersStats {
|
||||
var o *UsersStats
|
||||
json.NewDecoder(data).Decode(&o)
|
||||
return o
|
||||
}
|
Reference in New Issue
Block a user