This commit is contained in:
2026-08-21 17:52:28 +04:00
parent d7b8f08b4d
commit eb195dd992
116 changed files with 2719 additions and 1973 deletions

View File

@@ -0,0 +1,15 @@
package qospolicy
import "repository.basistech.ru/BASIS/decort-golang-sdk/interfaces"
// Structure for creating request to QoS policy
type QoSPolicy struct {
client interfaces.Caller
}
// Builder for QoS policy endpoint
func New(client interfaces.Caller) *QoSPolicy {
return &QoSPolicy{
client: client,
}
}