blob: da5c25e4153116adb1c670ff2c7a9399947a2de0 [file]
package accessEntity
import (
"github.com/apid/apidVerifyApiKey/common"
"net/http"
)
type ApiManagerInterface interface {
common.ApiManagerInterface
HandleRequest(w http.ResponseWriter, r *http.Request)
}
type DbManagerInterface interface {
common.DbManagerInterface
GetApiProducts(priKey, priVal, secKey, secVal string) (apiProducts []common.ApiProduct, err error)
}