blob: 8887be87539bf2953b91f23b1e72d5f452bacfcf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package handler
import (
"net/http"
"github.com/go-chi/chi/v5"
)
type Handler interface {
HandleCRUD(r chi.Router)
HandleEvents(r chi.Router)
Hearthbeat(w http.ResponseWriter, r *http.Request)
}
|