knowyt/server/src/engine/struct.go

14 lines
189 B
Go
Raw Normal View History

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-04 23:00:31 +00:00
id string
2021-08-04 22:52:35 +00:00
obs observer.Property
}