Files
decort-golang-sdk/pkg/cloudapi/bservice/bservice.go

17 lines
404 B
Go
Raw Normal View History

2022-12-22 17:56:47 +03:00
// API Actor for managing Compute Group. This actor is a final API for endusers to manage Compute Group
2022-08-11 08:09:54 +00:00
package bservice
2023-03-17 12:54:34 +03:00
import "repository.basistech.ru/BASIS/decort-golang-sdk/interfaces"
2022-08-11 08:09:54 +00:00
2022-12-22 17:56:47 +03:00
// Structure for creating request to bservice
2022-08-11 08:09:54 +00:00
type BService struct {
client interfaces.Caller
}
2022-12-22 17:56:47 +03:00
// Builder for bservice endpoints
2022-08-11 08:09:54 +00:00
func New(client interfaces.Caller) *BService {
return &BService{
client,
}
}