mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
c5f0e5a6b4
- Osquery Options (to be renamed to Options after current Options removed) - Labels - Queries - Packs
17 lines
315 B
Go
17 lines
315 B
Go
package service
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"net/http"
|
|
)
|
|
|
|
func decodeApplyOsqueryOptionsSpecRequest(ctx context.Context, r *http.Request) (interface{}, error) {
|
|
var req applyOsqueryOptionsSpecRequest
|
|
if err := json.NewDecoder(r.Body).Decode(&req); err != nil {
|
|
return nil, err
|
|
}
|
|
return req, nil
|
|
|
|
}
|