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 }