pikapika/go/mobile/mobile.go

23 lines
431 B
Go
Raw Normal View History

2021-09-29 23:57:09 +00:00
package mobile
import (
2021-11-11 03:00:38 +00:00
"pikapika/main/config"
"pikapika/main/controller"
2021-09-29 23:57:09 +00:00
)
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)
}