@rivascva/dt-idl 1.1.172 → 1.1.174
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/go/models/constants.go +11 -0
- package/package.json +1 -1
package/go/models/constants.go
CHANGED
|
@@ -24,3 +24,14 @@ const (
|
|
|
24
24
|
// ServiceToken represents a JWT access token for a service.
|
|
25
25
|
ServiceToken TokenType = "service"
|
|
26
26
|
)
|
|
27
|
+
|
|
28
|
+
const (
|
|
29
|
+
// MarketTimezone is the timezone of the market operating hours.
|
|
30
|
+
MarketTimezone = "America/New_York"
|
|
31
|
+
// MarketOpenTime is the opening time of the market in a 24-hour format (HH:mm).
|
|
32
|
+
// Based on the timezone specified in MarketTimezone.
|
|
33
|
+
MarketOpenTime = "09:30"
|
|
34
|
+
// MarketCloseTime is the closing time of the market in a 24-hour format (HH:mm).
|
|
35
|
+
// Based on the timezone specified in MarketTimezone.
|
|
36
|
+
MarketCloseTime = "16:00"
|
|
37
|
+
)
|