mirror of
https://github.com/gosom/google-maps-scraper.git
synced 2026-09-19 07:27:12 +08:00
cfb0440472
- 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
17 lines
607 B
Go
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"
|
|
)
|