You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
261 B
21 lines
261 B
2 months ago
|
package market
|
||
|
|
||
|
const (
|
||
|
DEPTH_SIZE_FIVE = 5
|
||
|
DEPTH_SIZE_TEN = 10
|
||
|
DEPTH_SIZE_TWENTY = 20
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
STEP0 = "step0"
|
||
|
STEP1 = "step1"
|
||
|
STEP2 = "step2"
|
||
|
STEP3 = "step3"
|
||
|
STEP4 = "step4"
|
||
|
STEP5 = "step5"
|
||
|
)
|
||
|
|
||
|
type GetDepthOptionalRequest struct {
|
||
|
Size int
|
||
|
}
|