4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-07-16 12:38:55 +00:00

Update direct dependencies where possible

This commit is contained in:
Duco van Amstel
2018-11-18 17:55:05 +00:00
committed by Wim
parent f716b8fc0f
commit 09875fe160
356 changed files with 27318 additions and 11078 deletions

View File

@ -0,0 +1,24 @@
// Copyright (c) 2016-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
}