You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
563 B
30 lines
563 B
4 years ago
|
package main
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
// Config struct used for bot
|
||
|
type Config struct {
|
||
|
GuildID string
|
||
|
AdminChannel string
|
||
|
AdminRole string
|
||
|
MonitorRole string
|
||
|
MonitorChann string
|
||
|
VerifiedRole string
|
||
|
BumpTime time.Time
|
||
|
LastBumper string
|
||
|
Stats map[string]int
|
||
|
Unverified map[string]time.Time
|
||
|
Verifications map[string]Verification
|
||
|
Probations map[string]time.Time
|
||
|
}
|
||
|
|
||
|
type Verification struct {
|
||
|
UserID string
|
||
|
Username string
|
||
|
Photo string
|
||
|
Submitted time.Time
|
||
|
Status string
|
||
|
Admin string
|
||
|
Closed time.Time
|
||
|
}
|