14 lines
239 B
Go
14 lines
239 B
Go
package yookassa
|
|
|
|
import "payouts/internal/service/yookassa/config"
|
|
|
|
type yookassaService struct {
|
|
conf config.YooKassa
|
|
}
|
|
|
|
func NewYookassaService(conf config.YooKassa) (Service, error) {
|
|
return &yookassaService{
|
|
conf: conf,
|
|
}, nil
|
|
}
|