Files
dynamix-golang-sdk/pkg/cloudbroker/audit/audit.go

15 lines
292 B
Go
Raw Normal View History

2025-09-23 14:34:24 +03:00
package audit
2026-02-20 17:30:02 +03:00
import "repository.basistech.ru/BASIS/dynamix-golang-sdk/v14/interfaces"
2025-09-23 14:34:24 +03:00
// Structure for creating request to audit
type Audit struct {
client interfaces.Caller
}
// Builder for audit endpoint
2026-03-13 17:20:54 +03:00
func New(client interfaces.Caller) *Audit{
2025-09-23 14:34:24 +03:00
return &Audit{
client: client,
}
2026-03-13 17:20:54 +03:00
}