added create date calculator for channel.

This commit is contained in:
5elenay
2021-08-22 17:45:45 +03:00
parent f80532ef53
commit b7cc1c0d5f
6 changed files with 35 additions and 7 deletions

View File

@@ -1,8 +1,11 @@
package revoltgo
import "time"
// User struct.
type User struct {
Client *Client
Client *Client
CreatedAt time.Time
Id string `json:"_id"`
Username string `json:"username"`