mirror of
https://github.com/hashicorp/vault.git
synced 2026-04-29 02:01:35 -04:00
14 lines
189 B
Go
14 lines
189 B
Go
// +build !enterprise
|
|
|
|
package logical
|
|
|
|
type entReq struct {
|
|
ControlGroup interface{}
|
|
}
|
|
|
|
func (r *Request) EntReq() *entReq {
|
|
return &entReq{}
|
|
}
|
|
|
|
func (r *Request) SetEntReq(*entReq) {
|
|
}
|