blob: 07746cac3dda6dc7f8a273430a797baa09bd53db [file]
package accessEntity
import (
"net/http"
"github.com/apid/apid-core"
)
type ApiManagerInterface interface {
InitAPI()
HandleRequest(w http.ResponseWriter, r *http.Request)
}
type DbManagerInterface interface {
SetDbVersion(string)
GetDb() apid.DB
GetDbVersion() string
}