|
|
@@ -7,6 +7,8 @@ import (
|
|
|
|
|
|
oscar "github.com/mkaminski/goaim/oscar"
|
|
|
mock "github.com/stretchr/testify/mock"
|
|
|
+
|
|
|
+ state "github.com/mkaminski/goaim/state"
|
|
|
)
|
|
|
|
|
|
// MockFeedbagHandler is an autogenerated mock type for the FeedbagHandler type
|
|
|
@@ -23,21 +25,21 @@ func (_m *MockFeedbagHandler) EXPECT() *MockFeedbagHandler_Expecter {
|
|
|
}
|
|
|
|
|
|
// DeleteItemHandler provides a mock function with given fields: ctx, sess, snacPayloadIn
|
|
|
-func (_m *MockFeedbagHandler) DeleteItemHandler(ctx context.Context, sess *Session, snacPayloadIn oscar.SNAC_0x13_0x0A_FeedbagDeleteItem) (oscar.XMessage, error) {
|
|
|
+func (_m *MockFeedbagHandler) DeleteItemHandler(ctx context.Context, sess *state.Session, snacPayloadIn oscar.SNAC_0x13_0x0A_FeedbagDeleteItem) (oscar.XMessage, error) {
|
|
|
ret := _m.Called(ctx, sess, snacPayloadIn)
|
|
|
|
|
|
var r0 oscar.XMessage
|
|
|
var r1 error
|
|
|
- if rf, ok := ret.Get(0).(func(context.Context, *Session, oscar.SNAC_0x13_0x0A_FeedbagDeleteItem) (oscar.XMessage, error)); ok {
|
|
|
+ if rf, ok := ret.Get(0).(func(context.Context, *state.Session, oscar.SNAC_0x13_0x0A_FeedbagDeleteItem) (oscar.XMessage, error)); ok {
|
|
|
return rf(ctx, sess, snacPayloadIn)
|
|
|
}
|
|
|
- if rf, ok := ret.Get(0).(func(context.Context, *Session, oscar.SNAC_0x13_0x0A_FeedbagDeleteItem) oscar.XMessage); ok {
|
|
|
+ if rf, ok := ret.Get(0).(func(context.Context, *state.Session, oscar.SNAC_0x13_0x0A_FeedbagDeleteItem) oscar.XMessage); ok {
|
|
|
r0 = rf(ctx, sess, snacPayloadIn)
|
|
|
} else {
|
|
|
r0 = ret.Get(0).(oscar.XMessage)
|
|
|
}
|
|
|
|
|
|
- if rf, ok := ret.Get(1).(func(context.Context, *Session, oscar.SNAC_0x13_0x0A_FeedbagDeleteItem) error); ok {
|
|
|
+ if rf, ok := ret.Get(1).(func(context.Context, *state.Session, oscar.SNAC_0x13_0x0A_FeedbagDeleteItem) error); ok {
|
|
|
r1 = rf(ctx, sess, snacPayloadIn)
|
|
|
} else {
|
|
|
r1 = ret.Error(1)
|
|
|
@@ -53,15 +55,15 @@ type MockFeedbagHandler_DeleteItemHandler_Call struct {
|
|
|
|
|
|
// DeleteItemHandler is a helper method to define mock.On call
|
|
|
// - ctx context.Context
|
|
|
-// - sess *Session
|
|
|
+// - sess *state.Session
|
|
|
// - snacPayloadIn oscar.SNAC_0x13_0x0A_FeedbagDeleteItem
|
|
|
func (_e *MockFeedbagHandler_Expecter) DeleteItemHandler(ctx interface{}, sess interface{}, snacPayloadIn interface{}) *MockFeedbagHandler_DeleteItemHandler_Call {
|
|
|
return &MockFeedbagHandler_DeleteItemHandler_Call{Call: _e.mock.On("DeleteItemHandler", ctx, sess, snacPayloadIn)}
|
|
|
}
|
|
|
|
|
|
-func (_c *MockFeedbagHandler_DeleteItemHandler_Call) Run(run func(ctx context.Context, sess *Session, snacPayloadIn oscar.SNAC_0x13_0x0A_FeedbagDeleteItem)) *MockFeedbagHandler_DeleteItemHandler_Call {
|
|
|
+func (_c *MockFeedbagHandler_DeleteItemHandler_Call) Run(run func(ctx context.Context, sess *state.Session, snacPayloadIn oscar.SNAC_0x13_0x0A_FeedbagDeleteItem)) *MockFeedbagHandler_DeleteItemHandler_Call {
|
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
|
- run(args[0].(context.Context), args[1].(*Session), args[2].(oscar.SNAC_0x13_0x0A_FeedbagDeleteItem))
|
|
|
+ run(args[0].(context.Context), args[1].(*state.Session), args[2].(oscar.SNAC_0x13_0x0A_FeedbagDeleteItem))
|
|
|
})
|
|
|
return _c
|
|
|
}
|
|
|
@@ -71,27 +73,27 @@ func (_c *MockFeedbagHandler_DeleteItemHandler_Call) Return(_a0 oscar.XMessage,
|
|
|
return _c
|
|
|
}
|
|
|
|
|
|
-func (_c *MockFeedbagHandler_DeleteItemHandler_Call) RunAndReturn(run func(context.Context, *Session, oscar.SNAC_0x13_0x0A_FeedbagDeleteItem) (oscar.XMessage, error)) *MockFeedbagHandler_DeleteItemHandler_Call {
|
|
|
+func (_c *MockFeedbagHandler_DeleteItemHandler_Call) RunAndReturn(run func(context.Context, *state.Session, oscar.SNAC_0x13_0x0A_FeedbagDeleteItem) (oscar.XMessage, error)) *MockFeedbagHandler_DeleteItemHandler_Call {
|
|
|
_c.Call.Return(run)
|
|
|
return _c
|
|
|
}
|
|
|
|
|
|
// InsertItemHandler provides a mock function with given fields: ctx, sess, snacPayloadIn
|
|
|
-func (_m *MockFeedbagHandler) InsertItemHandler(ctx context.Context, sess *Session, snacPayloadIn oscar.SNAC_0x13_0x08_FeedbagInsertItem) (oscar.XMessage, error) {
|
|
|
+func (_m *MockFeedbagHandler) InsertItemHandler(ctx context.Context, sess *state.Session, snacPayloadIn oscar.SNAC_0x13_0x08_FeedbagInsertItem) (oscar.XMessage, error) {
|
|
|
ret := _m.Called(ctx, sess, snacPayloadIn)
|
|
|
|
|
|
var r0 oscar.XMessage
|
|
|
var r1 error
|
|
|
- if rf, ok := ret.Get(0).(func(context.Context, *Session, oscar.SNAC_0x13_0x08_FeedbagInsertItem) (oscar.XMessage, error)); ok {
|
|
|
+ if rf, ok := ret.Get(0).(func(context.Context, *state.Session, oscar.SNAC_0x13_0x08_FeedbagInsertItem) (oscar.XMessage, error)); ok {
|
|
|
return rf(ctx, sess, snacPayloadIn)
|
|
|
}
|
|
|
- if rf, ok := ret.Get(0).(func(context.Context, *Session, oscar.SNAC_0x13_0x08_FeedbagInsertItem) oscar.XMessage); ok {
|
|
|
+ if rf, ok := ret.Get(0).(func(context.Context, *state.Session, oscar.SNAC_0x13_0x08_FeedbagInsertItem) oscar.XMessage); ok {
|
|
|
r0 = rf(ctx, sess, snacPayloadIn)
|
|
|
} else {
|
|
|
r0 = ret.Get(0).(oscar.XMessage)
|
|
|
}
|
|
|
|
|
|
- if rf, ok := ret.Get(1).(func(context.Context, *Session, oscar.SNAC_0x13_0x08_FeedbagInsertItem) error); ok {
|
|
|
+ if rf, ok := ret.Get(1).(func(context.Context, *state.Session, oscar.SNAC_0x13_0x08_FeedbagInsertItem) error); ok {
|
|
|
r1 = rf(ctx, sess, snacPayloadIn)
|
|
|
} else {
|
|
|
r1 = ret.Error(1)
|
|
|
@@ -107,15 +109,15 @@ type MockFeedbagHandler_InsertItemHandler_Call struct {
|
|
|
|
|
|
// InsertItemHandler is a helper method to define mock.On call
|
|
|
// - ctx context.Context
|
|
|
-// - sess *Session
|
|
|
+// - sess *state.Session
|
|
|
// - snacPayloadIn oscar.SNAC_0x13_0x08_FeedbagInsertItem
|
|
|
func (_e *MockFeedbagHandler_Expecter) InsertItemHandler(ctx interface{}, sess interface{}, snacPayloadIn interface{}) *MockFeedbagHandler_InsertItemHandler_Call {
|
|
|
return &MockFeedbagHandler_InsertItemHandler_Call{Call: _e.mock.On("InsertItemHandler", ctx, sess, snacPayloadIn)}
|
|
|
}
|
|
|
|
|
|
-func (_c *MockFeedbagHandler_InsertItemHandler_Call) Run(run func(ctx context.Context, sess *Session, snacPayloadIn oscar.SNAC_0x13_0x08_FeedbagInsertItem)) *MockFeedbagHandler_InsertItemHandler_Call {
|
|
|
+func (_c *MockFeedbagHandler_InsertItemHandler_Call) Run(run func(ctx context.Context, sess *state.Session, snacPayloadIn oscar.SNAC_0x13_0x08_FeedbagInsertItem)) *MockFeedbagHandler_InsertItemHandler_Call {
|
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
|
- run(args[0].(context.Context), args[1].(*Session), args[2].(oscar.SNAC_0x13_0x08_FeedbagInsertItem))
|
|
|
+ run(args[0].(context.Context), args[1].(*state.Session), args[2].(oscar.SNAC_0x13_0x08_FeedbagInsertItem))
|
|
|
})
|
|
|
return _c
|
|
|
}
|
|
|
@@ -125,27 +127,27 @@ func (_c *MockFeedbagHandler_InsertItemHandler_Call) Return(_a0 oscar.XMessage,
|
|
|
return _c
|
|
|
}
|
|
|
|
|
|
-func (_c *MockFeedbagHandler_InsertItemHandler_Call) RunAndReturn(run func(context.Context, *Session, oscar.SNAC_0x13_0x08_FeedbagInsertItem) (oscar.XMessage, error)) *MockFeedbagHandler_InsertItemHandler_Call {
|
|
|
+func (_c *MockFeedbagHandler_InsertItemHandler_Call) RunAndReturn(run func(context.Context, *state.Session, oscar.SNAC_0x13_0x08_FeedbagInsertItem) (oscar.XMessage, error)) *MockFeedbagHandler_InsertItemHandler_Call {
|
|
|
_c.Call.Return(run)
|
|
|
return _c
|
|
|
}
|
|
|
|
|
|
// QueryHandler provides a mock function with given fields: ctx, sess
|
|
|
-func (_m *MockFeedbagHandler) QueryHandler(ctx context.Context, sess *Session) (oscar.XMessage, error) {
|
|
|
+func (_m *MockFeedbagHandler) QueryHandler(ctx context.Context, sess *state.Session) (oscar.XMessage, error) {
|
|
|
ret := _m.Called(ctx, sess)
|
|
|
|
|
|
var r0 oscar.XMessage
|
|
|
var r1 error
|
|
|
- if rf, ok := ret.Get(0).(func(context.Context, *Session) (oscar.XMessage, error)); ok {
|
|
|
+ if rf, ok := ret.Get(0).(func(context.Context, *state.Session) (oscar.XMessage, error)); ok {
|
|
|
return rf(ctx, sess)
|
|
|
}
|
|
|
- if rf, ok := ret.Get(0).(func(context.Context, *Session) oscar.XMessage); ok {
|
|
|
+ if rf, ok := ret.Get(0).(func(context.Context, *state.Session) oscar.XMessage); ok {
|
|
|
r0 = rf(ctx, sess)
|
|
|
} else {
|
|
|
r0 = ret.Get(0).(oscar.XMessage)
|
|
|
}
|
|
|
|
|
|
- if rf, ok := ret.Get(1).(func(context.Context, *Session) error); ok {
|
|
|
+ if rf, ok := ret.Get(1).(func(context.Context, *state.Session) error); ok {
|
|
|
r1 = rf(ctx, sess)
|
|
|
} else {
|
|
|
r1 = ret.Error(1)
|
|
|
@@ -161,14 +163,14 @@ type MockFeedbagHandler_QueryHandler_Call struct {
|
|
|
|
|
|
// QueryHandler is a helper method to define mock.On call
|
|
|
// - ctx context.Context
|
|
|
-// - sess *Session
|
|
|
+// - sess *state.Session
|
|
|
func (_e *MockFeedbagHandler_Expecter) QueryHandler(ctx interface{}, sess interface{}) *MockFeedbagHandler_QueryHandler_Call {
|
|
|
return &MockFeedbagHandler_QueryHandler_Call{Call: _e.mock.On("QueryHandler", ctx, sess)}
|
|
|
}
|
|
|
|
|
|
-func (_c *MockFeedbagHandler_QueryHandler_Call) Run(run func(ctx context.Context, sess *Session)) *MockFeedbagHandler_QueryHandler_Call {
|
|
|
+func (_c *MockFeedbagHandler_QueryHandler_Call) Run(run func(ctx context.Context, sess *state.Session)) *MockFeedbagHandler_QueryHandler_Call {
|
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
|
- run(args[0].(context.Context), args[1].(*Session))
|
|
|
+ run(args[0].(context.Context), args[1].(*state.Session))
|
|
|
})
|
|
|
return _c
|
|
|
}
|
|
|
@@ -178,27 +180,27 @@ func (_c *MockFeedbagHandler_QueryHandler_Call) Return(_a0 oscar.XMessage, _a1 e
|
|
|
return _c
|
|
|
}
|
|
|
|
|
|
-func (_c *MockFeedbagHandler_QueryHandler_Call) RunAndReturn(run func(context.Context, *Session) (oscar.XMessage, error)) *MockFeedbagHandler_QueryHandler_Call {
|
|
|
+func (_c *MockFeedbagHandler_QueryHandler_Call) RunAndReturn(run func(context.Context, *state.Session) (oscar.XMessage, error)) *MockFeedbagHandler_QueryHandler_Call {
|
|
|
_c.Call.Return(run)
|
|
|
return _c
|
|
|
}
|
|
|
|
|
|
// QueryIfModifiedHandler provides a mock function with given fields: ctx, sess, snacPayloadIn
|
|
|
-func (_m *MockFeedbagHandler) QueryIfModifiedHandler(ctx context.Context, sess *Session, snacPayloadIn oscar.SNAC_0x13_0x05_FeedbagQueryIfModified) (oscar.XMessage, error) {
|
|
|
+func (_m *MockFeedbagHandler) QueryIfModifiedHandler(ctx context.Context, sess *state.Session, snacPayloadIn oscar.SNAC_0x13_0x05_FeedbagQueryIfModified) (oscar.XMessage, error) {
|
|
|
ret := _m.Called(ctx, sess, snacPayloadIn)
|
|
|
|
|
|
var r0 oscar.XMessage
|
|
|
var r1 error
|
|
|
- if rf, ok := ret.Get(0).(func(context.Context, *Session, oscar.SNAC_0x13_0x05_FeedbagQueryIfModified) (oscar.XMessage, error)); ok {
|
|
|
+ if rf, ok := ret.Get(0).(func(context.Context, *state.Session, oscar.SNAC_0x13_0x05_FeedbagQueryIfModified) (oscar.XMessage, error)); ok {
|
|
|
return rf(ctx, sess, snacPayloadIn)
|
|
|
}
|
|
|
- if rf, ok := ret.Get(0).(func(context.Context, *Session, oscar.SNAC_0x13_0x05_FeedbagQueryIfModified) oscar.XMessage); ok {
|
|
|
+ if rf, ok := ret.Get(0).(func(context.Context, *state.Session, oscar.SNAC_0x13_0x05_FeedbagQueryIfModified) oscar.XMessage); ok {
|
|
|
r0 = rf(ctx, sess, snacPayloadIn)
|
|
|
} else {
|
|
|
r0 = ret.Get(0).(oscar.XMessage)
|
|
|
}
|
|
|
|
|
|
- if rf, ok := ret.Get(1).(func(context.Context, *Session, oscar.SNAC_0x13_0x05_FeedbagQueryIfModified) error); ok {
|
|
|
+ if rf, ok := ret.Get(1).(func(context.Context, *state.Session, oscar.SNAC_0x13_0x05_FeedbagQueryIfModified) error); ok {
|
|
|
r1 = rf(ctx, sess, snacPayloadIn)
|
|
|
} else {
|
|
|
r1 = ret.Error(1)
|
|
|
@@ -214,15 +216,15 @@ type MockFeedbagHandler_QueryIfModifiedHandler_Call struct {
|
|
|
|
|
|
// QueryIfModifiedHandler is a helper method to define mock.On call
|
|
|
// - ctx context.Context
|
|
|
-// - sess *Session
|
|
|
+// - sess *state.Session
|
|
|
// - snacPayloadIn oscar.SNAC_0x13_0x05_FeedbagQueryIfModified
|
|
|
func (_e *MockFeedbagHandler_Expecter) QueryIfModifiedHandler(ctx interface{}, sess interface{}, snacPayloadIn interface{}) *MockFeedbagHandler_QueryIfModifiedHandler_Call {
|
|
|
return &MockFeedbagHandler_QueryIfModifiedHandler_Call{Call: _e.mock.On("QueryIfModifiedHandler", ctx, sess, snacPayloadIn)}
|
|
|
}
|
|
|
|
|
|
-func (_c *MockFeedbagHandler_QueryIfModifiedHandler_Call) Run(run func(ctx context.Context, sess *Session, snacPayloadIn oscar.SNAC_0x13_0x05_FeedbagQueryIfModified)) *MockFeedbagHandler_QueryIfModifiedHandler_Call {
|
|
|
+func (_c *MockFeedbagHandler_QueryIfModifiedHandler_Call) Run(run func(ctx context.Context, sess *state.Session, snacPayloadIn oscar.SNAC_0x13_0x05_FeedbagQueryIfModified)) *MockFeedbagHandler_QueryIfModifiedHandler_Call {
|
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
|
- run(args[0].(context.Context), args[1].(*Session), args[2].(oscar.SNAC_0x13_0x05_FeedbagQueryIfModified))
|
|
|
+ run(args[0].(context.Context), args[1].(*state.Session), args[2].(oscar.SNAC_0x13_0x05_FeedbagQueryIfModified))
|
|
|
})
|
|
|
return _c
|
|
|
}
|
|
|
@@ -232,7 +234,7 @@ func (_c *MockFeedbagHandler_QueryIfModifiedHandler_Call) Return(_a0 oscar.XMess
|
|
|
return _c
|
|
|
}
|
|
|
|
|
|
-func (_c *MockFeedbagHandler_QueryIfModifiedHandler_Call) RunAndReturn(run func(context.Context, *Session, oscar.SNAC_0x13_0x05_FeedbagQueryIfModified) (oscar.XMessage, error)) *MockFeedbagHandler_QueryIfModifiedHandler_Call {
|
|
|
+func (_c *MockFeedbagHandler_QueryIfModifiedHandler_Call) RunAndReturn(run func(context.Context, *state.Session, oscar.SNAC_0x13_0x05_FeedbagQueryIfModified) (oscar.XMessage, error)) *MockFeedbagHandler_QueryIfModifiedHandler_Call {
|
|
|
_c.Call.Return(run)
|
|
|
return _c
|
|
|
}
|
|
|
@@ -314,21 +316,21 @@ func (_c *MockFeedbagHandler_StartClusterHandler_Call) RunAndReturn(run func(con
|
|
|
}
|
|
|
|
|
|
// UpdateItemHandler provides a mock function with given fields: ctx, sess, snacPayloadIn
|
|
|
-func (_m *MockFeedbagHandler) UpdateItemHandler(ctx context.Context, sess *Session, snacPayloadIn oscar.SNAC_0x13_0x09_FeedbagUpdateItem) (oscar.XMessage, error) {
|
|
|
+func (_m *MockFeedbagHandler) UpdateItemHandler(ctx context.Context, sess *state.Session, snacPayloadIn oscar.SNAC_0x13_0x09_FeedbagUpdateItem) (oscar.XMessage, error) {
|
|
|
ret := _m.Called(ctx, sess, snacPayloadIn)
|
|
|
|
|
|
var r0 oscar.XMessage
|
|
|
var r1 error
|
|
|
- if rf, ok := ret.Get(0).(func(context.Context, *Session, oscar.SNAC_0x13_0x09_FeedbagUpdateItem) (oscar.XMessage, error)); ok {
|
|
|
+ if rf, ok := ret.Get(0).(func(context.Context, *state.Session, oscar.SNAC_0x13_0x09_FeedbagUpdateItem) (oscar.XMessage, error)); ok {
|
|
|
return rf(ctx, sess, snacPayloadIn)
|
|
|
}
|
|
|
- if rf, ok := ret.Get(0).(func(context.Context, *Session, oscar.SNAC_0x13_0x09_FeedbagUpdateItem) oscar.XMessage); ok {
|
|
|
+ if rf, ok := ret.Get(0).(func(context.Context, *state.Session, oscar.SNAC_0x13_0x09_FeedbagUpdateItem) oscar.XMessage); ok {
|
|
|
r0 = rf(ctx, sess, snacPayloadIn)
|
|
|
} else {
|
|
|
r0 = ret.Get(0).(oscar.XMessage)
|
|
|
}
|
|
|
|
|
|
- if rf, ok := ret.Get(1).(func(context.Context, *Session, oscar.SNAC_0x13_0x09_FeedbagUpdateItem) error); ok {
|
|
|
+ if rf, ok := ret.Get(1).(func(context.Context, *state.Session, oscar.SNAC_0x13_0x09_FeedbagUpdateItem) error); ok {
|
|
|
r1 = rf(ctx, sess, snacPayloadIn)
|
|
|
} else {
|
|
|
r1 = ret.Error(1)
|
|
|
@@ -344,15 +346,15 @@ type MockFeedbagHandler_UpdateItemHandler_Call struct {
|
|
|
|
|
|
// UpdateItemHandler is a helper method to define mock.On call
|
|
|
// - ctx context.Context
|
|
|
-// - sess *Session
|
|
|
+// - sess *state.Session
|
|
|
// - snacPayloadIn oscar.SNAC_0x13_0x09_FeedbagUpdateItem
|
|
|
func (_e *MockFeedbagHandler_Expecter) UpdateItemHandler(ctx interface{}, sess interface{}, snacPayloadIn interface{}) *MockFeedbagHandler_UpdateItemHandler_Call {
|
|
|
return &MockFeedbagHandler_UpdateItemHandler_Call{Call: _e.mock.On("UpdateItemHandler", ctx, sess, snacPayloadIn)}
|
|
|
}
|
|
|
|
|
|
-func (_c *MockFeedbagHandler_UpdateItemHandler_Call) Run(run func(ctx context.Context, sess *Session, snacPayloadIn oscar.SNAC_0x13_0x09_FeedbagUpdateItem)) *MockFeedbagHandler_UpdateItemHandler_Call {
|
|
|
+func (_c *MockFeedbagHandler_UpdateItemHandler_Call) Run(run func(ctx context.Context, sess *state.Session, snacPayloadIn oscar.SNAC_0x13_0x09_FeedbagUpdateItem)) *MockFeedbagHandler_UpdateItemHandler_Call {
|
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
|
- run(args[0].(context.Context), args[1].(*Session), args[2].(oscar.SNAC_0x13_0x09_FeedbagUpdateItem))
|
|
|
+ run(args[0].(context.Context), args[1].(*state.Session), args[2].(oscar.SNAC_0x13_0x09_FeedbagUpdateItem))
|
|
|
})
|
|
|
return _c
|
|
|
}
|
|
|
@@ -362,7 +364,7 @@ func (_c *MockFeedbagHandler_UpdateItemHandler_Call) Return(_a0 oscar.XMessage,
|
|
|
return _c
|
|
|
}
|
|
|
|
|
|
-func (_c *MockFeedbagHandler_UpdateItemHandler_Call) RunAndReturn(run func(context.Context, *Session, oscar.SNAC_0x13_0x09_FeedbagUpdateItem) (oscar.XMessage, error)) *MockFeedbagHandler_UpdateItemHandler_Call {
|
|
|
+func (_c *MockFeedbagHandler_UpdateItemHandler_Call) RunAndReturn(run func(context.Context, *state.Session, oscar.SNAC_0x13_0x09_FeedbagUpdateItem) (oscar.XMessage, error)) *MockFeedbagHandler_UpdateItemHandler_Call {
|
|
|
_c.Call.Return(run)
|
|
|
return _c
|
|
|
}
|