15 lines
219 B
Go
15 lines
219 B
Go
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
|
|
}
|