mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-05 15:37:19 +00:00
12 lines
224 B
Go
12 lines
224 B
Go
|
package apicall
|
||
|
|
||
|
type APICallConfiguration struct {
|
||
|
maxAPICallResponseLength int64
|
||
|
}
|
||
|
|
||
|
func NewAPICallConfiguration(maxLen int64) APICallConfiguration {
|
||
|
return APICallConfiguration{
|
||
|
maxAPICallResponseLength: maxLen,
|
||
|
}
|
||
|
}
|