openreplay/backend/internal/http/router/conditions.go
Alexander 354f071fb0
Conditions (ee version) (#1858)
* feat(backend): moved conditions to ee folder

* feat(backend): fixed typo
2024-01-26 14:03:29 +01:00

11 lines
235 B
Go

package router
import (
"errors"
"net/http"
"time"
)
func (e *Router) getConditions(w http.ResponseWriter, r *http.Request) {
ResponseWithError(w, http.StatusNotImplemented, errors.New("no support"), time.Now(), r.URL.Path, 0)
}