13 lines
244 B
Go
13 lines
244 B
Go
|
package interfaces
|
||
|
|
||
|
import (
|
||
|
"github.com/julienschmidt/httprouter"
|
||
|
)
|
||
|
|
||
|
//go:generate mockgen -source=http.go -destination=../mocks/interfaces/http.go -package=interfaces
|
||
|
|
||
|
type HTTPService interface {
|
||
|
Service
|
||
|
GetHandler() *httprouter.Router
|
||
|
}
|