libs5-go/service/http.go

12 lines
194 B
Go
Raw Permalink Normal View History

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