13 lines
177 B
Go
13 lines
177 B
Go
|
package engine
|
||
|
|
||
|
import (
|
||
|
"github.com/imkira/go-observer"
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
type HandleFunc func(http.ResponseWriter, *http.Request)
|
||
|
|
||
|
type Engine struct {
|
||
|
obs observer.Property
|
||
|
}
|