- refactor.

This commit is contained in:
gazebo
2018-06-14 17:49:39 +08:00
parent 48d2819606
commit db287fb025
2 changed files with 16 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
package elmapi
const (
OrderEffective = 10
OrderValid = 10
MerchantValid = 12
OrderCanceled = 14
MerchantInvalid = 15
@@ -23,3 +23,7 @@ type ELMCallbackMsg struct {
UserId int64 `json:"userId"`
Signature string `json:"signature"`
}
var (
ELMResponseOK = &ELMCallbackResponse{"ok"}
)