Files
Georgios Komninos cfb0440472 Upgrades scrapemate to v1.4.0 and Go 1.27.1 (#329)
- upgrade Scrapemate to v1.4.0
- update the project and Docker images to Go 1.27.1
- replace google/uuid usage with Go's standard uuid package
- migrate golangci-lint to v2 and fix lint issues
- update Dockerfiles for AMD64 and ARM64 compatibility
2026-09-13 10:59:25 +03:00

17 lines
607 B
Go

package admin
//nolint:gosec // These are configuration key names, not credentials.
const (
DatabaseURLKey = "database_url"
RegistryProviderSettingsKey = "registry_provider_settings"
HashSaltKey = "hash_salt"
AppKeyPairKey = "app_key_pair"
DOTokenKey = "do_api_token"
HetznerTokenKey = "hetzner_api_token"
templateErrorKey = "Error"
templateSuccessKey = "Success"
templateTOTPEnabledKey = "TOTPEnabled"
templateStepKey = "Step"
totpIssuer = "Google Maps Scraper Pro"
)