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

15 lines
287 B
Go
Raw Normal View History

2024-11-12 12:51:21 +03:00
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,
}
}