|
|
@ -1,6 +1,7 @@ |
|
|
|
package main |
|
|
|
package main |
|
|
|
|
|
|
|
|
|
|
|
import "time" |
|
|
|
import "time" |
|
|
|
|
|
|
|
import "github.com/rudi9719/loggy" |
|
|
|
|
|
|
|
|
|
|
|
// Config struct used for bot
|
|
|
|
// Config struct used for bot
|
|
|
|
type Config struct { |
|
|
|
type Config struct { |
|
|
@ -17,6 +18,7 @@ type Config struct { |
|
|
|
Unverified map[string]time.Time |
|
|
|
Unverified map[string]time.Time |
|
|
|
Verifications map[string]Verification |
|
|
|
Verifications map[string]Verification |
|
|
|
Probations map[string]time.Time |
|
|
|
Probations map[string]time.Time |
|
|
|
|
|
|
|
LogOpts loggy.LogOpts |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Verification struct used for storing and logging
|
|
|
|
// Verification struct used for storing and logging
|
|
|
|