2024-01-10 14:19:21 +00:00
|
|
|
package service
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/julienschmidt/httprouter"
|
|
|
|
"go.sia.tech/jape"
|
|
|
|
)
|
|
|
|
|
2024-01-30 02:32:13 +00:00
|
|
|
type HTTPService interface {
|
2024-01-30 01:52:17 +00:00
|
|
|
GetHttpRouter(inject map[string]jape.Handler) *httprouter.Router
|
2024-01-30 02:32:13 +00:00
|
|
|
Service
|
2024-01-17 20:51:41 +00:00
|
|
|
}
|