Implement yookassa client

This commit is contained in:
2026-03-19 00:09:25 +03:00
parent 075a53f6ef
commit dd2c360cf6
15 changed files with 411 additions and 114 deletions

6
internal/models/error.go Normal file
View File

@@ -0,0 +1,6 @@
package models
type ErrorResp struct {
Status int `json:"status"`
Message string `json:"message"`
}