mirror of
https://github.com/MickMake/GoSungrow.git
synced 2025-04-12 21:59:14 +02:00
15 lines
302 B
Go
15 lines
302 B
Go
package cmd
|
|
|
|
import "time"
|
|
|
|
|
|
//goland:noinspection SpellCheckingInspection
|
|
const (
|
|
defaultHost = "https://augateway.isolarcloud.com"
|
|
defaultUsername = "harry@potter.net"
|
|
defaultPassword = "hogwarts"
|
|
defaultApiAppKey = "93D72E60331ABDCDC7B39ADC2D1F32B3"
|
|
|
|
defaultTimeout = time.Second * 30
|
|
)
|