Files
decort-golang-sdk/pkg/cloudapi/audit/audit.go
2026-06-19 17:37:20 +03:00

15 lines
287 B
Go

package audit
import "repository.basistech.ru/BASIS/decort-golang-sdk/interfaces"
// Structure for creating request to audit
type Audit struct {
client interfaces.Caller
}
// Builder for audit endpoint
func New(client interfaces.Caller) *Audit{
return &Audit{
client: client,
}
}