Refactored EventRequest

This commit is contained in:
Trial97
2021-07-05 17:20:34 +03:00
committed by Dan Christian Bogos
parent 1b1eaff58b
commit faf1fba125
117 changed files with 339 additions and 721 deletions

View File

@@ -19,7 +19,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>
package engine
import (
"net"
"strings"
"github.com/cgrates/cgrates/utils"
@@ -74,8 +73,3 @@ func (t *Task) FieldAsString(fldPath []string) (s string, err error) {
return "", utils.ErrPrefixNotFound(strings.Join(fldPath, utils.NestingSep))
}
}
// RemoteHost implements utils.DataProvider
func (t *Task) RemoteHost() (rh net.Addr) {
return
}