mirror of
https://github.com/PrivateCaptcha/PrivateCaptcha.git
synced 2026-02-09 15:28:49 -06:00
13 lines
386 B
Go
13 lines
386 B
Go
package common
|
|
|
|
type DifficultyLevel uint8
|
|
|
|
const (
|
|
// NOTE: We want them equally spaced
|
|
DifficultyDelta = 15
|
|
DifficultyLevelSmall DifficultyLevel = 80
|
|
DifficultyLevelMedium DifficultyLevel = DifficultyLevelSmall + DifficultyDelta
|
|
DifficultyLevelHigh DifficultyLevel = DifficultyLevelMedium + DifficultyDelta
|
|
MaxDifficultyLevel DifficultyLevel = 255
|
|
)
|