open-vault/logical/request_util.go

15 lines
189 B
Go
Raw Normal View History

2018-09-18 03:03:00 +00:00
// +build !enterprise
package logical
type entReq struct {
ControlGroup interface{}
}
func (r *Request) EntReq() *entReq {
return &entReq{}
}
func (r *Request) SetEntReq(*entReq) {
}