Ada
337522b489
Some checks failed
ci/woodpecker/push/release Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/pr/release Pipeline was successful
ci/woodpecker/push/lint Pipeline failed
ci/woodpecker/pr/lint Pipeline failed
18 lines
431 B
Go
18 lines
431 B
Go
package constant
|
|
|
|
import "time"
|
|
|
|
const (
|
|
HTTPTimeout = 3 * time.Second
|
|
ExpirationCurlCreate = 604800 * time.Second // Second in one week
|
|
TokenLength = 32
|
|
ArgonSaltSize = 16
|
|
ArgonMemory = 64 * 1024
|
|
ArgonThreads = 4
|
|
ArgonKeyLength = 32
|
|
ArgonIterations = 2
|
|
MaxURLLength = 255
|
|
SecondsInDay = 86400
|
|
SecondsInHour = 3600
|
|
SecondsInMinute = 60
|
|
)
|