2024-03-14 14:52:56 +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
|
2024-04-16 14:26:06 +03:00
|
|
|
func New(client interfaces.Caller) *Audit{
|
2024-03-14 14:52:56 +03:00
|
|
|
return &Audit{
|
|
|
|
|
client: client,
|
|
|
|
|
}
|
2024-04-16 14:26:06 +03:00
|
|
|
}
|