package engine import ( "github.com/imkira/go-observer" "net/http" ) type HandleFunc func(http.ResponseWriter, *http.Request) type Engine struct { id string versionRef int obs observer.Property }