mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-05-21 09:58:10 +08:00
20 lines
338 B
Go
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
|
|
}
|