2021-08-04 22:52:35 +00:00
|
|
|
package engine
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/imkira/go-observer"
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
|
|
|
type HandleFunc func(http.ResponseWriter, *http.Request)
|
|
|
|
|
|
|
|
type Engine struct {
|
2021-08-09 07:47:52 +00:00
|
|
|
id string
|
|
|
|
versionRef int
|
|
|
|
obs observer.Property
|
2021-08-04 22:52:35 +00:00
|
|
|
}
|