32 lines
450 B
Go
32 lines
450 B
Go
|
package event
|
||
|
|
||
|
|
||
|
import (
|
||
|
gt "loafle.com/overflow/central_api_gateway/event"
|
||
|
"golang.org/x/net/context"
|
||
|
)
|
||
|
|
||
|
|
||
|
|
||
|
type TaskResultServerImpl struct {
|
||
|
|
||
|
}
|
||
|
|
||
|
func (d *TaskResultServerImpl)Event(c context.Context,te *gt.TaskResultEvent) (*gt.Empty, error) {
|
||
|
et := >.Empty{}
|
||
|
|
||
|
return et, nil
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
type EventServerImpl struct {
|
||
|
|
||
|
}
|
||
|
|
||
|
func (d *EventServerImpl)Event(c context.Context,ae *gt.AgentEvent) (*gt.Empty, error) {
|
||
|
et := >.Empty{}
|
||
|
|
||
|
return et, nil
|
||
|
}
|