github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/utils/consts/consts.go (about)

     1  package consts
     2  
     3  // Global project-wide constants
     4  
     5  const (
     6  	// NamedPipeProcName is the GoFunction name used for murex builtin that outputs from a named pipe
     7  	NamedPipeProcName = "read-named-pipe"
     8  
     9  	// TestTableHeadings is the header line for the `table` test report format
    10  	TestTableHeadings = " Status  Definition Function                                           Line Col.  Message"
    11  )
    12  
    13  const (
    14  	EnvTrue  = "true"
    15  	EnvFalse = "false"
    16  
    17  	EnvMurexPid   = "MUREX_PID"
    18  	EnvDataType   = "MUREX_DATA_TYPE"
    19  	EnvMethod     = "MUREX_IS_METHOD"
    20  	EnvBackground = "MUREX_IS_BACKGROUND"
    21  )
    22  
    23  const IssueTrackerURL = "This is a murex bug. Please raise an issue at https://github.com/lmorg/murex/issues"