gitlab.com/evatix-go/core@v1.3.55/coredata/corestr/vars.go (about)

     1  package corestr
     2  
     3  import (
     4  	"gitlab.com/evatix-go/core/constants"
     5  	"gitlab.com/evatix-go/core/errcore"
     6  )
     7  
     8  //goland:noinspection ALL
     9  var (
    10  	New             = &newCreator{}
    11  	Empty           = &emptyCreator{}
    12  	StaticJsonError = errcore.EmptyResultCannotMakeJsonType.
    13  			Error(constants.EmptyString, constants.EmptyString)
    14  	ExpectingLengthForLeftRight      = constants.Two
    15  	LeftRightExpectingLengthMessager = errcore.ExpectingFuture(
    16  		"Expecting length at least",
    17  		ExpectingLengthForLeftRight)
    18  )