gitlab.com/evatix-go/core@v1.3.55/errcore/MsgHeader.go (about)

     1  package errcore
     2  
     3  import (
     4  	"fmt"
     5  
     6  	"gitlab.com/evatix-go/core/internal/msgformats"
     7  )
     8  
     9  func MsgHeader(
    10  	items ...interface{},
    11  ) string {
    12  	return fmt.Sprintf(
    13  		msgformats.MsgHeaderFormat,
    14  		items...)
    15  }