geo-smart-system/system/constants.go
2020-01-04 07:44:42 +07:00

20 lines
387 B
Go

package system
import "fmt"
const (
// Tile 38
Tile38Address = "127.0.0.1"
Tile38Port = "9851"
// Server Port
ServerPort = "8080"
)
func GetTile38ConnectionAddress() string {
return fmt.Sprintf("%s:%s", Tile38Address, Tile38Port)
}
func GetTile38HookURL(hookID string) string {
return fmt.Sprintf("http://%s/detection/call?hook=%s", GetTile38ConnectionAddress(), hookID)
}