Jerry vor 7 Jahren
Ursprung
Commit
ac819549e5
1 geänderte Dateien mit 3 neuen und 3 gelöschten Zeilen
  1. 3 3
      message.go

+ 3 - 3
message.go

@@ -1,10 +1,10 @@
-package go_pay
+package gopay
 
 
-type ErrorMessage struct {
+type errorMessage struct {
 	ErrorCode int    `json:"error_code"`
 	ErrorCode int    `json:"error_code"`
 	ErrorDesc string `json:"error_desc"`
 	ErrorDesc string `json:"error_desc"`
 }
 }
 
 
-type SuccessMessage struct {
+type successMessage struct {
 	Msg string `json:"msg"`
 	Msg string `json:"msg"`
 }
 }