This commit is contained in:
2025-04-18 11:42:00 +03:00
parent 650b1c158b
commit 0c44daa241
44 changed files with 1686 additions and 31 deletions

View File

@@ -0,0 +1,15 @@
package bservice
import "repository.basistech.ru/BASIS/decort-golang-sdk/interfaces"
// Structure for creating request to bservice
type BService struct {
client interfaces.Caller
}
// Builder for bservice endpoints
func New(client interfaces.Caller) *BService {
return &BService{
client,
}
}