23 lines
425 B
Go
23 lines
425 B
Go
|
package mobile
|
||
|
|
||
|
import (
|
||
|
"pgo/pikapi/config"
|
||
|
"pgo/pikapi/controller"
|
||
|
)
|
||
|
|
||
|
func InitApplication(application string) {
|
||
|
config.InitApplication(application)
|
||
|
}
|
||
|
|
||
|
func FlatInvoke(method string, params string) (string, error) {
|
||
|
return controller.FlatInvoke(method, params)
|
||
|
}
|
||
|
|
||
|
func EventNotify(notify EventNotifyHandler) {
|
||
|
controller.EventNotify = notify.OnNotify
|
||
|
}
|
||
|
|
||
|
type EventNotifyHandler interface {
|
||
|
OnNotify(message string)
|
||
|
}
|