1package config 2 3import "bitget/constants" 4 5const ( 6 BaseUrl = "https://api.bitget.com" 7 WsUrl = "wss://ws.bitget.com/mix/v1/stream" 8 9 ApiKey = "" 10 SecretKey = "" 11 PASSPHRASE = "" 12 TimeoutSecond = 30 13 SignType = constants.SHA256 14) 15 16