package coderd import ( "net/http" "github.com/coder/coder/v2/coderd/httpapi" ) // @Summary Get experiments // @ID get-experiments // @Security CoderSessionToken // @Produce json // @Tags General // @Success 200 {array} codersdk.Experiment // @Router /experiments [get] func (api *API) handleExperimentsGet(rw http.ResponseWriter, r *http.Request) { ctx := r.Context() httpapi.Write(ctx, rw, http.StatusOK, api.Experiments) }