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.
64 lines
1.3 KiB
64 lines
1.3 KiB
package main |
|
|
|
import ( |
|
"time" |
|
|
|
"github.com/bwmarrin/discordgo" |
|
"github.com/rudi9719/loggy" |
|
) |
|
|
|
// BotCommand struct used for modular commands |
|
type BotCommand struct { |
|
Message *discordgo.MessageCreate |
|
Session *discordgo.Session |
|
Parts []string |
|
Command string |
|
} |
|
|
|
// Command is the type to store commands |
|
type Command struct { |
|
Name string |
|
RequiresAdmin bool |
|
Help string |
|
Keywords []string |
|
Exec func(BotCommand) bool |
|
} |
|
|
|
// Config struct used for bot |
|
type Config struct { |
|
GuildID string |
|
AdminChannel string |
|
AdminRole string |
|
MonitorRole string |
|
IntroChann string |
|
MonitorChann string |
|
SocialChanns []string |
|
VerifiedRole string |
|
BumpTime time.Time |
|
LastBumper string |
|
Stats map[string]int |
|
Activity map[string]int |
|
Unverified map[string]time.Time |
|
Verifications map[string]Verification |
|
Probations map[string]time.Time |
|
LogOpts loggy.LogOpts |
|
} |
|
|
|
// Verification struct used for storing and logging |
|
type Verification struct { |
|
UserID string |
|
Username string |
|
Photo string |
|
Submitted time.Time |
|
Status string |
|
Admin string |
|
Closed time.Time |
|
} |
|
|
|
// Tokens are the Login Token struct |
|
type Tokens struct { |
|
Username string |
|
IP string |
|
Password string |
|
Timestamp time.Time |
|
}
|
|
|