15 lines
210 B
Go
15 lines
210 B
Go
package config
|
|
|
|
import "time"
|
|
|
|
type YooKassa struct {
|
|
BaseUrl string
|
|
Timeout time.Duration
|
|
Test bool
|
|
|
|
ApiBaseKey string
|
|
ApiBaseSecret string
|
|
ApiPaymentKey string
|
|
ApiPaymentSecret string
|
|
}
|