Files
epic-go/internal/consts/consts.go
hu xiaotong 8657bc4eea i18n翻译
2025-07-14 17:31:48 +08:00

28 lines
1.1 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package consts
const (
// 笑门官网查询英雄名称和神器名称,用作中文翻译
SimileHeroName = "https://static.smilegatemegaport.com/gameRecord/epic7/epic7_hero.json?_=1729322698936"
SimileArtifactName = "https://static.smilegatemegaport.com/gameRecord/epic7/epic7_artifact.json?_=1729322698936"
// 获取角色信息
HeroListURL = "https://e7-optimizer-game-data.s3-accelerate.amazonaws.com/herodata.json"
// 获取神器信息
ArtifactDataURL = "https://e7-optimizer-game-data.s3-accelerate.amazonaws.com/artifactdata.json"
// 根据角色名字查询配装
HeroNameURL = "https://krivpfvxi0.execute-api.us-west-2.amazonaws.com/dev/getBuilds"
// 官方数据接口示例https://static.smilegatemegaport.com/event/live/epic7/guide/images/hero/c2027_s.png
// 角色图片基础 URL
GfHeroPngURL = "https://static.smilegatemegaport.com/event/live/epic7/guide/images/hero/"
// S3/OSS 配置
S3AccessKey = "s5iWm6wXVvhCNN9nJlXwgWRf"
S3SecretKey = "91sTurpFtugXijPg0uSof3JcJma0HED"
S3Bucket = "epic"
S3Region = "cn-east-1"
S3Endpoint = "https://s3.bitiful.net"
)