Not deleting users

This commit is contained in:
2023-09-09 01:45:47 +03:00
parent e1319a951d
commit 635f27f5ed
4 changed files with 15 additions and 14 deletions

View File

@ -30,6 +30,7 @@ type User struct {
DateJoined time.Time `bson:"date_joined"`
JoinedMessage int `bson:"joined_message"`
LastNotification time.Time `bson:"last_notification"`
Warnings int `bson:"warnings"`
}
func (User) Coll() string { return "users" }