Files
cloudpods/pkg/scheduler/api/completed.go
2018-07-30 11:18:02 +08:00

20 lines
338 B
Go

package api
import (
"github.com/bitly/go-simplejson"
)
type CompletedNotifyArgs struct {
SessionID string
}
type CompletedNotifyResult struct {
}
func NewCompletedNotifyArgs(sjson *simplejson.Json, sessionId string) (*CompletedNotifyArgs, error) {
args := new(CompletedNotifyArgs)
args.SessionID = sessionId
return args, nil
}