2024-01-10 14:19:21 +00:00
|
|
|
package interfaces
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/julienschmidt/httprouter"
|
2024-01-15 01:53:44 +00:00
|
|
|
"go.sia.tech/jape"
|
2024-01-10 14:19:21 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
//go:generate mockgen -source=http.go -destination=../mocks/interfaces/http.go -package=interfaces
|
|
|
|
|
|
|
|
type HTTPService interface {
|
|
|
|
Service
|
2024-01-16 16:26:27 +00:00
|
|
|
GetHttpRouter(inject map[string]jape.Handler) *httprouter.Router
|
2024-01-15 01:53:44 +00:00
|
|
|
}
|