feat: port apply command from influxdb (#160)

This commit is contained in:
Daniel Moran
2021-06-30 14:47:23 -04:00
committed by GitHub
parent d7b2983dd4
commit a3f36a9821
8 changed files with 1037 additions and 8 deletions

View File

@ -120,6 +120,20 @@ func (mr *MockStdIOMockRecorder) GetStringInput(arg0, arg1 interface{}) *gomock.
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetStringInput", reflect.TypeOf((*MockStdIO)(nil).GetStringInput), arg0, arg1)
}
// InputIsInteractive mocks base method.
func (m *MockStdIO) InputIsInteractive() bool {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "InputIsInteractive")
ret0, _ := ret[0].(bool)
return ret0
}
// InputIsInteractive indicates an expected call of InputIsInteractive.
func (mr *MockStdIOMockRecorder) InputIsInteractive() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "InputIsInteractive", reflect.TypeOf((*MockStdIO)(nil).InputIsInteractive))
}
// Write mocks base method.
func (m *MockStdIO) Write(arg0 []byte) (int, error) {
m.ctrl.T.Helper()